考慮一下這個命令:如何更改終端命令的默認位置?
$~ which python
/home/satyarth934/anaconda3/bin/python
我想更改默認的執行文件爲 '蟒蛇' 到「/家/ satyarth934/anaconda2 /斌/ Python的
我已經Anaconda2和Anaconda3都安裝上我的機器。
我無法找到如何做到這一點。
考慮一下這個命令:如何更改終端命令的默認位置?
$~ which python
/home/satyarth934/anaconda3/bin/python
我想更改默認的執行文件爲 '蟒蛇' 到「/家/ satyarth934/anaconda2 /斌/ Python的
我已經Anaconda2和Anaconda3都安裝上我的機器。
我無法找到如何做到這一點。
你需要確保你的目標蟒蛇二進制至上的PATH
:
export PATH=/home/satyarth934/anaconda2/bin/:$PATH
which python
謝謝@languitar –
如果這有幫助,請接受答案:) – languitar
要創建符號鏈接
ln -s /path/to/original/ /path/to/linkName
https://www.nixtutor.com/freebsd/understanding-symbolic-links/
這取決於目錄中的順序你的'PATH'變量。 – ceving
謝謝@ceving –