我在2.7.9
系统范围内安装了 python。
然后我安装virtualenvwrapper
在那个 python 版本上。
之后,我已经安装了pyenv
,然后我已经安装了 python3.3.1
pyenv install 3.3.1
散列该版本的垫片,将$PATH
变量导出pyenv
到我的bash_profile
文件中(我在 Debian Wheezy 上)。
然后,我需要运行该 python 版本3.3.1
来处理 Django 项目。
但是,我还需要在那个 python 版本上安装 virtualenvwrapper,这3.3.1
不是2.7.9
但是3.3.1
激活后,我尝试pip install virtualenvwrapper
在 Python3 上运行安装它,但它一直在寻找系统范围的版本,所以我无法安装它,这是整个回溯:
user@debian:~/python_examples/orthosie$ pyenv local
3.3.1
user@debian:~/python_examples/orthosie$ pip install virtualenvwrapper
You are using pip version 6.0.6, however version 7.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Requirement already satisfied (use --upgrade to upgrade): virtualenvwrapper in /usr/lib/python2.7/dist-packages
Requirement already satisfied (use --upgrade to upgrade): virtualenv in /usr/local/lib/python2.7/dist-packages (from virtualenvwrapper)
user@debian:~/python_examples/orthosie$
我在这里做错了什么?也许我可以从系统范围内运行它virtualenvwrapper
?
提前致谢!