Windows使用python虚拟环境

Windows使用python虚拟环境

文章目录

  • Windows使用python虚拟环境
    • 1. 安装依赖包(创建虚拟环境的包)
    • 2. 创建虚拟环境
    • 3. 使用虚拟环境
    • 4. 导出在虚拟环境中安装的包(requirements.txt)
    • 5. 退出虚拟环境

1. 安装依赖包(创建虚拟环境的包)

pip install virtualenv -i "https://pypi.tuna.tsinghua.edu.cn/simple"

Windows使用python虚拟环境_第1张图片

2. 创建虚拟环境

如: 创建一个mrfan包名的虚拟环境

virtualenv mrfan

image-20220312210630449

3. 使用虚拟环境

cd mrfan
cd .\Scripts\
.\activate

Windows使用python虚拟环境_第2张图片

4. 导出在虚拟环境中安装的包(requirements.txt)

当前已经安装的包

Windows使用python虚拟环境_第3张图片

安装requests包

Windows使用python虚拟环境_第4张图片

再次查看安装的包

Windows使用python虚拟环境_第5张图片

导出安装的包

pip freeze > requirements.txt

Windows使用python虚拟环境_第6张图片

5. 退出虚拟环境

在虚拟项目名下的Scripts包下

deactivate

Windows使用python虚拟环境_第7张图片

你可能感兴趣的:(python,开发语言)