标签:使用 sp on cti bs linux as python 安装
1. 安装pip
easy_install pip
2. 安装virtualenvwrapper
sudo pip install virtualenvwrapper
3. 使用virtualenv
source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv test1 # 创建
deactivate # 离开
workon test1 # 返回
rmvirtualenv test1 # 删除
好处:为项目创建一个干净的开发环境
〖Linux〗安装和使用virtualenv,方便多个Python版本中切换
标签:使用 sp on cti bs linux as python 安装
原文地址:http://www.cnblogs.com/scue/p/4072627.html