python virtualenv

为了防止安装过多的第三方包污染自己的开发环境, python提供的虚拟环境virtualenv, 是个非常好的工具.

用法

创建一个独立的python运行环境

$ virtualenv venv1  
New python executable in venv1/bin/python
Installing setuptools, pip...done.

以下是virtualenv的参数,

You must provide a DEST_DIR
Usage: virtualenv [OPTIONS] DEST_DIR

Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -v, --verbose         Increase verbosity.
  -q, --quiet           Decrease verbosity.
  -p PYTHON_EXE, --python=PYTHON_EXE
                        The Python interpreter to use, e.g.,
                        --python=python2.5 will use the python2.5 interpreter
                        to create the new environment.  The default is the
                        interpreter that virtualenv was installed with
                        (/usr/bin/python)
  --clear               Clear out the non-root install and start from scratch.
  --no-site-packages    DEPRECATED. Retained only for backward compatibility.
                        Not having access to global site-packages is now the
                        default behavior.

  --system-site-packages
                        Give the virtual environment access to the global
                        site-packages.
                        与--no-site-packages相反

  --always-copy         Always copy files rather than symlinking.
  --unzip-setuptools    Unzip Setuptools when installing it.
  --relocatable         Make an EXISTING virtualenv environment relocatable.
                        This fixes up scripts and makes all .pth files
                        relative.
  --no-setuptools       Do not install setuptools (or pip) in the new
                        virtualenv.
  --no-pip              Do not install pip in the new virtualenv.
  --extra-search-dir=DIR
                        Directory to look for setuptools/pip distributions in.
                        This option can be used multiple times.
  --never-download      DEPRECATED. Retained only for backward compatibility.
                        This option has no effect. Virtualenv never downloads
                        pip or setuptools.
  --prompt=PROMPT       Provides an alternative prompt prefix for this
                        environment.
  --setuptools          DEPRECATED. Retained only for backward compatibility.
                        This option has no effect.
  --distribute          DEPRECATED. Retained only for backward compatibility.
                        This option has no effect.

现在该目录下面出现一个venv1目录
└── venv1
├── bin
├── include
├── lib
└── local

进入新建的venv1环境

source venv1/bin/activate

退出

deactivate
PythonVirtualenv是一个用于创建和管理独立Python环境的工具。它可以让你在同一台机器上拥有多个独立的Python环境,每个环境可以有自己的Python版本和安装的软件包,而不会相互影响。 使用Virtualenv可以帮助你解决不同项目之间的依赖冲突问题。例如,你可以在一个项目中使用Python 2.7,而在另一个项目中使用Python 3.8,而不会相互干扰。 要使用Virtualenv,你可以先安装它,然后通过命令行创建一个新的虚拟环境。以下是一些使用Virtualenv的基本步骤: 1. 安装Virtualenv:在命令行中运行`pip install virtualenv`来安装Virtualenv。 2. 创建虚拟环境:在命令行中进入你想要创建虚拟环境的目录,然后运行`virtualenv <环境名称>`来创建一个新的虚拟环境。例如,`virtualenv myenv`将创建一个名为"myenv"的虚拟环境。 3. 激活虚拟环境:在命令行中运行`source <环境名称>/bin/activate`(对于Windows系统,运行`<环境名称>\Scripts\activate`)来激活虚拟环境。一旦激活,你将在命令行的提示符前看到环境名称。 4. 安装软件包:在虚拟环境中,你可以使用`pip`来安装所需的Python软件包,就像在全局Python环境中一样。这些软件包将被安装在虚拟环境的文件夹中,而不会影响全局Python环境。 5. 退出虚拟环境:要退出虚拟环境,只需在命令行中运行`deactivate`即可。 通过使用Virtualenv,你可以轻松地管理和隔离不同项目的Python环境和依赖。这对于开发和部署应用程序时非常有用。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值