1、安装virtualenvwrapper

[root@localhost ~]# pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple virtualenvwrapper

安装成功后看起来像下面这个样子:

2、安装成功后,设置开机启动。

我们可以在/etc/profile中设置开机自启动,这样的话会影响系统所有用户,也可以在用户家目录下~/.bash_profile针对某个用户进行设置。

这里我们针对root用户进行设置。

[root@localhost ~]# vim ~/.bash_profile      # 在配置文件的末尾我们添加如下配置

[root@localhost ~]# source  ~/.bash_profile     # 使文件立即生效

3、我们在开一个shell登陆root,创建虚拟环境

[root@localhost Envs]# mkvirtualenv env_django_1

使用pip3 list 查看一下:

 下面的使用就和virtualenv类似了,这里不再重复。退出虚拟环境和virtualenv一样

(env_django_1) [root@localhost Envs]# deactivate    # 退出虚拟环境

4、激活工作目录和virtualenv不同,使用workon

[root@localhost Envs]# workon env_django_1    # 激活虚拟环境

5、查看有哪些虚拟环境

[root@localhost Envs]# lsvirtualenv 

6、删除虚拟环境

[root@localhost Envs]# rmvirtualenv env_django_1

跟多有趣的内容请看官方文档:https://virtualenvwrapper.readthedocs.io/en/latest/command_ref.html