Python虚拟环境的使用
1. 安装python
你的系统可能同时安装了python2和python3或者多个版本的python。
#查看linux发行版
$ uname -a
Linux localhost.localdomain 5.4.15-200.fc31.x86_64 #1 SMP Tue Jan 28 09:08:32 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
#查看当前python版本:fedora31+默认采用python3
$ python -V
Python 3.7.6
#安装python2
$ sudo yum install python2
#确认python2版本
$ python2 -V
Python 2.7.18
2. 安装和使用virtualenv
每个应用可能需要各自拥有一套“独立”的Python运行环境。virtualenv就是用来为一个应用创建一套“隔离”的Python运行环境。virtualenv创建“独立”Python运行环境的原理很简单:就是把系统Python复制一份到virtualenv的环境,当进入一个virtualenv环境时,virtualenv会修改相关环境变量,让命令python和pip均指向当前的virtualenv环境。
从Python 3.6开始,创建虚拟环境的推荐方法是使用venv模块,它属于python3-venv软件包。venv创建的虚拟环境一般在当前目录。
#安装virtualenv
$ sudo pip install virtualenv
# 创建虚拟环境
# 用法:python3 -m venv <环境名称>
$ python3 -m venv venv
# 激活虚拟环境
# source <环境名称>/bin/activate
$ source venv/bin/activate
# 退出虚拟环境
$ deactivate
3. 使用virtualenvwrapper
Virtaulenvwrapper是virtualenv的扩展包,用于更方便管理虚拟环境,它可以做:
- 将所有虚拟环境整合在一个目录下
- 管理(新增,删除,复制)虚拟环境
- 快速切换虚拟环境
#安装virtualenvwrapper
sudo pip install virtualenvwrapper
将下面的代码添加到.bash_profile(或者 .zshrc): vi ~/.zshrc
# virtualenvwrapper config
if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
fi
其中 WORKON_HOME是告诉 virtualenvwrapper 放置虚拟环境的位置。
执行,启用:
$ source ~/.bash_profile
# or
$ source ~/.zshrc
# 确认是否真的安装成功
$ mkvirtualenv --help
和 virtualenv 不同,virtualenvwrapper 是在我们刚才所说的 WORKON_HOME目录~/.virtualenvs
中创建的虚拟环境而非当前目录。创建完成之后,同时也激活了该环境。可以查看当前环境下的 Python 版本 python-V和已安装的软件包 pip list。默认情况下,virtualenvwrapper 不会包含系统的软件包,只会安装一些基本的软件包,例如pip, setuptools, wheel等。
# 创建虚拟环境
$ mkvirtualenv --help
$ mkvirtualenv -p python3 py3env # 创建一个python3,名为py3env的虚拟环境
$ mkvirtualenv -p python2 py2env # 创建一个python2,名为py2env的虚拟环境
# 查看所有的虚拟环境:也可以到 ~/.virtualenvs目录查看所有的虚拟环境。
$ lsvirtualenv
# 切换虚拟环境
$ workon py3env # 直接切换到py3env
$ workon py2env # 直接切换到py2env
# 列出当前环境安装了的包
$ lssitepackages
# 退出虚拟环境
$ deactivate
# 删除虚拟环境
$ rmvirtualenv [env]
4. 项目中使用虚拟环境
使用虚拟环境的两种方式;
- 终端shell: 进入项目目录,(py2env)提示符下运行程序
- pycharm IDE: 在project interpreter对话框中添加虚拟环境,找到已有环境配置即可。
5. virtualenvwrapper报错
在将系统更新到最新版fedora34后,打开命令行终端,总是提示以下错误:
/usr/bin/python: Error while finding module specification for 'virtualenvwrapper.hook_loader' (ModuleNotFoundError: No module named 'virtualenvwrapper')
virtualenvwrapper.sh: There was a problem running the initialization hooks.
If Python could not import the module virtualenvwrapper.hook_loader,
check that virtualenvwrapper has been installed for
VIRTUALENVWRAPPER_PYTHON=/usr/bin/python and that PATH is
set properly.
查看virtualenvwrapper.sh的位置:
$ whereis virtualenvwrapper.sh
virtualenvwrapper: /usr/local/bin/virtualenvwrapper.sh
大部分的文章都是提示修改virtualenvwrapper.sh的内容,将which python
, 修改为 which python3
# Locate the global Python where virtualenvwrapper is installed.
if [ "$VIRTUALENVWRAPPER_PYTHON" = "" ] then
VIRTUALENVWRAPPER_PYTHON="$(command \which python)"
fi
其实,这里的问题大多数情况下,需要重新安装virtualenv和virtualenvwrapper
sudo pip3 install virtualenv virtualenvwrapper
source ~/.bashrc #或者 source ~/.zshrc
网友评论