在Arch Linux的,安裝後virtualenvwrapper系統範圍內,通過sudo pip2 install virtualenvwrapper
和我的用戶的.bash_profile中添加此,`這virtualenvwrapper.sh螺絲python`了在Arch Linux的
export WORKON_HOME=/home/myuser/.virtualenvs
export PROJECT_HOME=/home/myuser/work
source /usr/bin/virtualenvwrapper.sh
錯誤顯示,每當我推出一個新的shell窗口: -
which: no python in (/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin/core_perl)
-bash: : command not found
virtualenvwrapper.sh: There was a problem running the initialization hooks. If Python could not import the module virtualenvwrapper.hook_loader, check that virtualenv has been installed for VIRTUALENVWRAPPER_PYTHON= and that PATH is set properly.
這可以追溯到在virtualenvwrapper.sh腳本行50: -
47 # Locate the global Python where virtualenvwrapper is installed.
48 if [ "$VIRTUALENVWRAPPER_PYTHON" = "" ]
49 then
50 VIRTUALENVWRAPPER_PYTHON="$(\which python)"
51 fi
並且是與使用python2 for python 2.7安裝的arch linux約定相沖突的結果。
如果我將第50行修改爲which python2
,一切正常,每當我啓動一個新的shell時,我都不會看到錯誤消息。
解決此問題的適當方法是什麼?我是否明確檢查當前操作系統是否是arch linux,並引入if-else條件以使用virtualenvwrapper.sh中的哪個python2並將修補程序發送給virtualenvwrapper作者?還是有什麼我可以用我的arch linux機器上的配置來做?
這是一個很好的答案,對我來說它比virtualenv更好。我只需要它,因此我只是在需要時創建鏈接,然後取消鏈接/ usr/local/bin/python – Ben 2014-10-10 05:48:55