1.首先按装virtualenv
sudo pip install virtualenv
virtualenv的命令管理方式不太友好,所有需要使用virtualenvwrapper来管理虚拟环境
2.按装virtualenvwrapper
sudo pip install virtualenvwrapper
3.配置虚拟环境
网上的帖子始终写的很差强人意,其实通过阅读virtualenvwarpper.sh的脚本文件,就已经告诉你每一步该怎么操作了。
通过sudo find / -name virtualenvwarpper.sh,获取到全路径,使用vim打开这个脚本文件
# Setup:## 1. Create a directory to hold the virtual environments.# (mkdir $HOME/.virtualenvs). # 在你的家目录下创建.virtualenvs目录# 2. Add a line like "export WORKON_HOME=$HOME/.virtualenvs"# to your .bashrc. # 将这个变量值添加到你当前用户的系统变量里# 3. Add a line like "source /path/to/this/file/virtualenvwrapper.sh"# to your .bashrc. # 这个也要添加到变量里# 4. Run: source ~/.bashrc # 使环境变量生效,下面都跟平时使用一样了# 5. Run: workon# 6. A list of environments, empty, is printed.# 7. Run: mkvirtualenv temp# 8. Run: workon# 9. This time, the "temp" environment is included.# 10. Run: workon temp# 11. The virtual environment is activated.
脚本的开始告诉你,你必须有使用、复制和更改的权限,所以普通用户使用sudo,管理员就不必了。