zoukankan      html  css  js  c++  java
  • Python与Excel--02环境virtualenv

    1.virtualenv是用来创建 Python 的虚拟环境的库

    #安装
    pip install virtualenv
    
    #创建一个虚拟环境
    virtualenv new_env
    
    #
    F:envs>virtualenv new_env
    Using base prefix 'f:\python352'
    New python executable in F:envs
    ew_envScriptspython.exe
    Installing setuptools, pip, wheel...done.
    
    #在 Windows 系统上面使用 virtualenv,进入目录
    F:envs>cd new_envScripts
    
    #激活虚拟环境
    F:envs
    ew_envScripts>activate
    (new_env) F:envs
    ew_envScripts>python
    Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>>
    
    #pip list 查看库版本
    (new_env) F:envs
    ew_envScripts>pip list
    DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.co
    nf under the [list] section) to disable this warning.
    pip (9.0.1)
    setuptools (38.5.2)
    wheel (0.30.0)
    2.virtualenvwrapper 是一个 virtualenv 虚拟环境的管理库
    pip install virtualenvwrapper-win

    virtualenvwrapper 命令

    • 创建虚拟环境:mkvirtualenv new_env
    • 使用虚拟环境:workon new_env
    • 退出虚拟环境:deactivate
    • 删除虚拟环境: rmvirtualenv new_env
    • 查看所有虚拟环境:lsvirtualenv
     
  • 相关阅读:
    玲珑oj 1129 ST
    HDU 3397 线段树区间修改
    bzoj 1798 双标记区间修改线段树
    HDU 4417 BIT or ST
    HDU 2492 BIT/逆序数/排列组合
    uva 12086 线段树or树状数组练习
    cf 833 A 数论
    wcf的DataContractAttribute与DataMenmberAttribute
    wcf服务查看工具
    git学习-综合性文章
  • 原文地址:https://www.cnblogs.com/cevinchen/p/9332765.html
Copyright © 2011-2022 走看看