如何设置要在Linux中执行的二进制文件

时间:2018-08-26 12:09:16

标签: linux

我的机器上有2个名为“ jupyter-notebook”的二进制文件:

$ which jupyter-notebook

我得到结果:

jupyter-notebook is /usr/local/bin/jupyter-notebook
jupyter-notebook is /anaconda3/bin/jupyter-notebook

似乎当我键入$ jupyter-notebook时,它将自动运行第一个。如何配置它以运行第二个?

1 个答案:

答案 0 :(得分:-1)

您可以为此使用别名。在外壳程序中运行以下命令。

  

alias jupyter-notebook =“ / anaconda3 / bin / jupyter-notebook”

如果您希望它是永久性的,则将其放入Shell rc文件中。