美文网首页python-django
ubuntu 下使用virtualenv 创建python2虚拟

ubuntu 下使用virtualenv 创建python2虚拟

作者: 谢耳朵_X | 来源:发表于2018-03-20 10:17 被阅读56次

    同时安装了py2 和 py3的情况下,有时需要单独运行某个python的虚拟环境。

    1,安装virtualenv 

    pip install virtualenv

    2,在/var 下创建目录 test

    mkdir test

    cd test

    3,创建虚拟环境目录(会看到系统自动安装pip,setuptools等工具),并进入该目录

    virtualenv -p /usr/bin/python testvir

    cd testvir

    4,激活环境目录(注意前面的点)

    . bin/activate

    5,成功激活后在命令行最左侧看到(testvir),表示已进入python2的虚拟环境。

    如果需要创建python3的虚拟环境,将上面第二步中的-p 后的参数改为python3的位置即可

    若不知道python3的位置,可以使用 which python3 命令寻找

    6,退出虚拟环境

    deactivate

    相关文章

      网友评论

        本文标题:ubuntu 下使用virtualenv 创建python2虚拟

        本文链接:https://www.haomeiwen.com/subject/uyjvqftx.html