
创建虚拟环境
在当前目录创建虚拟环境:
下面是”venv”的详细使用参数:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | usage: venv [-h] [
[
Creates virtual Python environments in one or more target directories.
positional arguments:
ENV_DIR A directory to create the environment in .
optional arguments:
-h,
virtual environment.
are not the default for the platform.
symlinks are the default for the platform.
If not specified and the directory exists, an error is
raised.
of Python, assuming Python has been upgraded in -place.
environment (pip is bootstrapped by default )
|
激活虚拟环境
在Posix标准平台下:
1 | $ source <venv>/bin/activate
|
在Windows cmd下:
1 | C:> <venv>/Scripts/activate.bat
|
在Windows PowerShell下:
1 | PS C:> <venv>/Scripts/Activate.ps1
|
测试虚拟环境
激活虚拟环境后,在命令行会提示当前虚拟环境的名称,就表示激活成功了。
在当前虚拟环境中安装numpy:
当前安装的numpy包与系统中的不会冲突,下面进行测试:
1 2 3 | $ python
>>> import numpy
>>> print (numpy)
|
如果输出了numpy的包路径就表示一切正常。
官方文档参考
https://docs.python.org/3/library/venv.html
更多Python文章,请关注
Python自学网。