• 2.virtualenv安装和配置以及在PyCharm中如何使用虚拟环境


    1. virtualenv优点
    • 使不同应用开发环境相互独立
    • 环境升级不影响其它应用,也不会影响全局的python环境
    • 它可以防止系统中出现包管理混乱和版本的冲突

    1.使用virtualenv

    • pip install virtualenv  安装
    • virtualenv test1  创建名为test1的虚拟环境
    • cd test1/Scripts       进入scripts目录
    • activate/deactivate  进入、退出虚拟环境

          

    2.使用virtualenvwrapper环境管理器管理虚拟环境

    • pip install virtualenvwrapper-win 安装
    • mkvirtualenv test2  创建名为test2的虚拟环境   (注意,必须要有setuptools工具包,不然会报错)
    • lsvirtualenv或workon列出环境虚拟列表
    • workon test2进行虚拟环境
    • deactivate退出虚拟环境
    • rmvirtualenv test2删除虚拟环境

    3.在PyCharm中使用虚拟环境

    • 在PyCharm中创建djaogo项目时,interpreter代表的就是虚拟环境,如果没有显示出来,手动选择到虚拟环境的python路径
    • 验证
    •  

  • 相关阅读:
    HDU 2602
    ZOJ 1074 最大子矩阵和
    POJ 3903
    最大子段和
    HDU 1052
    CodeForces 18C
    CodeForces 546B-Soldier and Badges
    UVA 11462-Age sort
    Codeforces Round #326 (Div. 2)-Duff in Love
    Codeforces Round #327 (Div. 2)-Wizards' Duel
  • 原文地址:https://www.cnblogs.com/mmdln/p/8880382.html
Copyright © 2020-2023  润新知