一、venv 环境管理
1、venv 虚拟环境的优点
1)独立的 Python 环境,不会产生冲突
2)有助于包的管理
3)删除和卸载方便
2、venv 使用方法
1)创建虚拟环境
2)激活虚拟环境
3)安装 Python 包
3、venv 创建虚拟环境
执行指令:python3 -m venv test
4、venv 激活虚拟环境
1)切换指定文件夹
Windows:/Scripts/
macOS:/bin/
2)执行指令:activate
# Windows 系统激活虚拟环境
cd test
cd Scripts
activate
# macOS系统激活虚拟环境
cd test
cd bin
source actiavte
# 或者一步到位
source ./test/bin/acitvate
5、venv 安装 Python 包
1)Python 版本选择
进入 python2.7 环境:python2
进入 python3.x 环境: python3
2)pip 安装 Python 包
安装 Python2.x 版本的包
安装 Python3.x 版本的包
# 进入 python2.7 环境
python2
# 进入 python3.x 环境
python3
# 安装 Python2.x 版本的包
pip install xxx
# 安装 Python3.x 版本的包
pip3 install xxx
6、venv 退出和删除
1)退出虚拟环境:deactivate
2)删除虚拟环境:直接删除环境目录
# Windows和macOS通用的退出指令
deactivate
二、pip 环境管理
1、pip 概述
1)pip 是 Python 包管理工具
2)python2 的 2.7.9 版本开始自带
3)python3 的 3.4 版本开始自带
4)官网(托管了大量流行的Python包):https://pypi.org/
2、pip 常用命令
3、pip 安装包
1)普通安装
2)指定版本
3)从文件中安装
# 默认安装最新版本
pip install pytest
# 执行版本
pip install pytest==6.2.0
# 从文件清单中批量安装
pip install -r requirments.txt
# 文件格式
pytest==6.2.0
Faker==9.3.1
selenium==3.14.1
4、pip 升级包
# 升级已安装的 Python 包
pip install -U pytest
5、pip 卸载包
# 卸载包
pip uninstall pytest
6、pip 使用镜像加速
1)pip install -i 镜像源
2)国内常用源:
阿里源:https://mirrors.aliyun.com/pypi/simple/
清华源:https://pypi.tuna.tsinghua.edu.cn/simple/
豆瓣源:http://pypi.douban.com/simple/
# 使用镜像
pip install pytest -i https://pypi.douban.com/simple
1 个赞