Python有着庞大的开源社区的支持,很自然就产生这么一个问题:第三方包参差不齐,如果我们想在服务器测试,或者升级某个包,就会导致生产环境产生杂乱,多余的第三方依赖包。
virtualenv就是来解决这个问题的,virtualenv可以生成多个的Python环境,各个环境相互独立,互不影响,且和正式环境一模一样。
1、安装Virtaulenvwrapper是virtualenv的扩展包,用于更方便管理虚拟环境,它可以做:1. 将所有虚拟环境整合在一个目录下2. 管理(新增,删除,复制)虚拟环境3. 切换虚拟环境
安装deactivate
参考资料:
https://virtualenv.pypa.io/en/latest/virtualenv.html
http://stackoverflow.com/questions/11372221/virtualenvwrapper-not-found
http://virtualenvwrapper.readthedocs.org/en/latest/index.html
安装独立Python虚拟环境:virtualenv,布布扣,bubuko.com
原文地址:http://blog.csdn.net/yiliumu/article/details/37583953