安装
sudo apt install python3-venv
创建虚拟环境
python3 -m venv test_env
会自动在用户目录创建一个test _env的虚拟环境目录
开启&使用虚拟环境
source ~/test_env/bin/activate
开启虚拟环境后pip install安装的包会自动存放在/test_env/lib/pythonx.x/site-packages目录下面
关闭虚拟环境
deactivate
标签:venv,版本控制,虚拟环境,env,test,python3
From: https://www.cnblogs.com/nyyyddddn/p/16846475.html