0

我已经使用sudo pip install virtualenvwrapper. 但是,当我运行时出现source bash_profile此错误 - bash: /usr/local/share/python/virtualenvwrapper.sh:没有这样的文件或目录

这就是我的.bash_profile样子:

export PATH=/usr/local/bin:/usr/local/sbin:${PATH}


export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/share/python/virtualenvwrapper.sh

我正在运行 OSX Mountain Lion 并使用此处提供的说明安装 python https://python-guide.readthedocs.org/en/latest/starting/install/osx/

4

1 回答 1

0

不要将绝对路径传递给source,而是使用动态路径:

source "$(which virtualenvwrapper.sh)"
于 2013-04-03T21:55:11.267 回答