LoginSignup
1
1

More than 5 years have passed since last update.

Macのターミナルで"$ Julia"では起動できない問題

Last updated at Posted at 2015-04-25

理由はわかりませんが、Juliaを起動しようとMacのTerminalで
$ Julia
と入力してもJuliaは起動しません…。
というわけで、bashrcで登録します。

$ vim .bashrc
でbashrcを開いて
alias julia='exec '/Applications/Julia-***.app/Contents/Resources/julia/bin/julia''
Junoとのバンドルの場合は、

alias julia='exec "/Applications/Juno.app/Contents/Resources/app/julia/bin/julia"'

を追加して保存。
次に、
$ vim .bash_profile
でbash_profileを開きます。
source ~/.bashrc
を追加して保存。
$ source .bash_profile
を入力して、再ログイン。これで解決。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1