使用特定版本的 Python 设置 python virtualenv
我正在尝试开始使用 Google App Engine。我在我的虚拟环境中安装了 python 2.6,我想使用它。但Google App Engine支持python2.5。所以我想用python 2.5设置另一个python虚拟环境。
你能帮我具体怎么做吗?
I am trying to get started with Google App Engine. I have python 2.6 installed in my virtual environment which I wanted to use. But Google App Engine supports python2.5. So I want to set up another python virtual environment with python 2.5.
Can you help me how to do exactly that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Virtualenv 允许您指定要使用的
python
二进制文件,而不是默认的二进制文件。在您的计算机上,python
可能映射到/usr/bin/python
,这将是/usr/bin/python2.6
的符号链接。如果您安装了 Python 2.5,它将是/usr/bin/python2.5
您可以使用
virtualenv -p /usr 创建一个名为
envname
的 virtualenv /bin/python2.5 环境名称Virtualenv lets you specify a
python
binary to use instead of the default. On your machine,python
probably maps to/usr/bin/python
, which will be a symlink to/usr/bin/python2.6
. If you've got Python 2.5 installed, it will be/usr/bin/python2.5
You can create a virtualenv called
envname
withvirtualenv -p /usr/bin/python2.5 envname
您是否特别需要虚拟环境?
为什么不直接安装 Python 2.5 与现有的 2.6 一起使用,只需使用 2.5 进行 GAE 开发。
Do you specifically need a virtual environment?
Why not just Install Python 2.5 along side your existing 2.6 and just use 2.5 for your GAE development.