快上网专注成都网站设计 成都网站制作 成都网站建设
成都网站建设公司服务热线:028-86922220

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

python建立venv虚拟环境的方法-创新互联

创新互联www.cdcxhl.cn八线动态BGP香港云服务器提供商,新人活动买多久送多久,划算不套路!

成都创新互联-专业网站定制、快速模板网站建设、高性价比开化网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式开化网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖开化地区。费用合理售后完善,十多年实体公司更值得信赖。

这篇文章将为大家详细讲解有关python建立venv虚拟环境的方法,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

创建虚拟环境

在当前目录创建虚拟环境:

$ python -m venv .1

下面是”venv”的详细使用参数:

usage: venv [-h] [--system-site-packages] [--symlinks] [--clear]
            [--upgrade] [--without-pip] ENV_DIR [ENV_DIR ...]

Creates virtual Python environments in one or more target directories.

positional arguments:
  ENV_DIR             A directory to create the environment in.

optional arguments:
  -h, --help             show this help message and exit
  --system-site-packages Give access to the global site-packages dir to the                         
  virtual environment.
  --symlinks             Try to use symlinks rather than copies, when symlinks
                         are not the default for the platform.
  --copies               Try to use copies rather than symlinks, even when
                         symlinks are the default for the platform.
  --clear                Delete the environment directory if it already exists.                        
                         If not specified and the directory exists, an error is
                         raised.
  --upgrade              Upgrade the environment directory to use this version                        
                         of Python, assuming Python has been upgraded in-place.
  --without-pip          Skips installing or upgrading pip in the virtual
                         environment (pip is bootstrapped by default)
激活虚拟环境

在Posix标准平台下:

$ source /bin/activate

在Windows cmd下:

C:> /Scripts/activate.bat

在Windows PowerShell下:

PS C:> /Scripts/Activate.ps1
测试虚拟环境

激活虚拟环境后,在命令行会提示当前虚拟环境的名称,就表示激活成功了。

在当前虚拟环境中安装numpy:

$ pip install numpy

当前安装的numpy包与系统中的不会冲突,下面进行测试:

$ python
>>> import numpy
>>> print(numpy)

如果输出了numpy的包路径就表示一切正常。


当前标题:python建立venv虚拟环境的方法-创新互联
本文来源:http://6mz.cn/article/psphs.html

其他资讯