这已被标记为重复,但可能重复中描述的解决方案是我尝试过的,但它对我不起作用。
我安装了OCaml,安装程序说要将/Users/me/ocamlbrew/ocaml-4.02.3/etc/ocamlbrew.bashrc
添加到我的.bashrc文件中,我这样做了,似乎没什么帮助。
我必须在每个新的终端窗口上运行/Users/me/ocamlbrew/ocaml-4.02.3/etc/ocamlbrew.bashrc
,然后才能使用Ocaml
作为命令。我该怎么做才能避免这种情况?
这就是我的尝试:
alias ocaml = source /Users/me/ocamlbrew/ocaml-4.02.3/etc/ocamlbrew.bashrc
我也试过
source /Users/me/ocamlbrew/ocaml-4.02.3/etc/ocamlbrew.bashrc
我已经尝试编辑〜/ .bashrc文件和我的〜/ .bash_profile
答案 0 :(得分:-1)
我最终将源/Users/me/ocamlbrew/ocaml-4.02.3/etc/ocamlbrew.bashrc
添加到(安装程序说谎的位置)我的~/.bash_profile
,然后从终端调用源~/.bash_profile
。