我在MacOSX上安装了Python2.6.1,我想在Python3.2上玩,所以我创建了一个虚拟环境
virtualenv python3.0
然后用
source python3.0/bin/activate
如果我在virtualenv中更新python,它会让我的系统python保持不变吗?如果是,我是否只使用pip install安装python 3?

最佳答案

当你创造通过

virtualenv python3.0

它在虚拟环境文件夹bin目录中创建符号链接:
lrwxr-xr-x   1 ---  ---     6 Aug 23 13:28 python2.6 -> python

所以你不能仅仅通过pip安装来升级python。
在mac osx上,可以安装多个版本的python在您的例子中,安装python 3.0,然后使用该版本调用virtualenv。
Python安装在/usr/bin中
-rwxr-xr-x  2 root  heel  86000 Feb 11  2010 python
-rwxr-xr-x  5 root  heel    925 Feb 11  2010 python-config
lrwxr-xr-x  1 root  heel     75 Aug 23 10:01 python2.5 -> ../../System/Library/Frameworks/Python.framework/Versions/2.5/bin/python2.5
lrwxr-xr-x  1 root  heel     82 Aug 23 10:01 python2.5-config -> ../../System/Library/Frameworks/Python.framework/Versions/2.5/bin/python2.5-config
lrwxr-xr-x  1 root  heel     75 Aug 23 10:01 python2.6 -> ../../System/Library/Frameworks/Python.framework/Versions/2.6/bin/python2.6
lrwxr-xr-x  1 root  heel     82 Aug 23 10:01 python2.6-config -> ../../System/Library/Frameworks/Python.framework/Versions/2.6/bin/python

/usr/bin/python3.0虚拟环境。
这个env将有一个python 3.0的符号链接

关于python - 在虚拟环境中升级Python,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3713097/

10-08 21:43