3

在 Arch linux 上,在系统范围内安装 virtualenvwrapper 后,通过sudo pip2 install virtualenvwrapper并将其添加到我的用户的 .bash_profile 中,

 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 

并且是与 Arch linux 使用 python2 安装 python 2.7 的约定冲突的结果。

如果我将第 50 行修改为which python2,则一切正常,每当我启动新的 shell 时,我都不会看到错误消息。

解决此问题的适当方法是什么?我是否写了一个明确的检查当前操作系统是arch linux并引入一个if-else条件来使用virtualenvwrapper.sh中的哪个python2并将补丁发送给virtualenvwrapper作者?或者我可以在我的 Arch linux 机器中使用我的配置做些什么?

4

3 回答 3

3

Virtualenvwrapper 有变量VIRTUALENVWRAPPER_PYTHONVIRTUALENVWRAPPER_VIRTUALENV它们指向你的 python 和 virtualenv 可执行文件。所以,在你的.bash_profile你可以写这样的东西:

export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python2
export VIRTUALENVWRAPPER_VIRTUALENV=/usr/bin/virtualenv2
source /usr/bin/virtualenvwrapper.sh
于 2012-05-20T19:00:16.477 回答
2

为了回答这个特定于拱门的 python 怪癖(使用约定python2),我专门创建了一个这样的软链接:-

ln -s /usr/bin/python2 /usr/local/bin/python

由于在/usr/local/binbash/usr/bin系统 PATH 环境变量中有前置,当我键入python时,或者当 virtualenvwrapper.sh 脚本which python在第 50 行引用时,我们将不再遇到上面提到的 virtualenvwrapper 冲突,一切都按预期工作。

这样做的缺点是它可能会弄乱 Arch linux 设计的“python 3”(被认为是默认的 python 命令)约定。所以必须注意不要在我的目标框中使用与 python 3 相关的库或与 python 3 相关的包安装。

于 2012-04-18T14:46:14.307 回答
1

我发现无需编辑/usr/bin/virtualenvwrapper.sh脚本或创建新的符号链接。我只是错过了virtualenvwrapperpython2 的模块。我安装它如下:

pip2 install virtualenvwrapper

并保留出口,这样魔术就完成了。

于 2017-07-18T09:06:24.610 回答