python3 虚拟环境 venv
创建一个虚拟环境:
python -m venv test (test 为创建的虚拟环境目录)
激活虚拟环境:
test\Scripts\activate (windows下路径)
test/bin/activate (linux下路径)
退出虚拟环境:
deactivate
创建一个虚拟环境:
python -m venv test (test 为创建的虚拟环境目录)
激活虚拟环境:
test\Scripts\activate (windows下路径)
test/bin/activate (linux下路径)
退出虚拟环境:
deactivate