zoukankan      html  css  js  c++  java
  • Python virtual environment 的使用

    有时候 做Python 项目时 会有一个问题 不同的 project 需要依赖不同的lib 这个时候用 virtual environment 可以作为解决这个问题的一个方法。

    这里只简单介绍具体的使用方法 至于实现原理这里不做介绍:

    一  常规的使用方法

    a. installation

    1. sudo apt-get install python-virtualenv

    2. sudo easy_install virtualenv

    3. pip install virtualenv

     

    b. How to activeate/deactivate virtualenv

    virtualenv venv   //创建virtualenv venv

    source venv/bin/activate   //activate venv

    (venv) $  //activate 后进入得视图

    deactivate    //deactivate virual env

    二  virtualenvwrapper 的使用方法

    sudo pip install virtualenvwrapper  //install virtual env tools

    echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bashrc 

    workon test     // substitute test with the desired environment name if needed 

    deactivate    //deactivate virual env

    mkvirtualenv test: This will create an environment named test and
    activate it automatically.
    mktmpenv test: This will create a temporary environment named test and
    activate it automatically. This environment will be destroyed once you
    invoke the deactivate script.
    workon app: This will switch you to the app environment (already created).
    workon (alias lsvirtualenv): When you don't specify an environment,
    this will print all the existing environments that are available.
    deactivate: This will disable the currently active environment, if any.
    rmvirtualenv app: This will completely remove the app environment

  • 相关阅读:
    3-为什么很多 对 1e9+7(100000007)取模
    6-关于#include<bits/stdc++.h>
    7-n!的位数(斯特灵公式)
    5-math中函数汇总
    6-找数的倍数
    6-Collision-hdu5114(小球碰撞)
    5-青蛙的约会(ex_gcd)
    4-圆数Round Numbers(数位dp)
    4-memset函数总结
    一种Furture模式处理请求中循环独立的任务的方法
  • 原文地址:https://www.cnblogs.com/abacuspix/p/6495471.html
Copyright © 2011-2022 走看看