6月14日 上海 OSC 源创会开始报名啦,有很多机械键盘送哦!!!
VirtualEnv 13.0.1 发布,此版本 pip 更新至 7.0.1 版本,
就在昨天,VirtualEnv 13.0.0 发布,更新内容如下:
Automatically install wheel when creating a new virutalenv. This can be disabled by using the --no-wheel
option.
Don’t trust the current directory as a location to discover files to install packages from.
Upgrade setuptools to 16.0.
Upgrade pip to 7.0.0.
下载: https://github.com/pypa/virtualenv/archive/13.0.1.zip
VirtualEnv用于在一台机器上创建多个独立的python运行环境,VirtualEnvWrapper为前者提供了一些便利的命令行上的封装。
使用 VirtualEnv 的理由:
隔离项目之间的第三方包依赖,如A项目依赖django1.2.5,B项目依赖django1.3。
为部署应用提供方便,把开发环境的虚拟环境打包到生产环境即可,不需要在服务器上再折腾一翻。