venv 虚拟环境管理
venv 虚拟环境的优点
- 独立的 Python 环境,不会产生冲突
- 有助于包的管理
- 删除和卸载方便
venv 使用方法
- 创建虚拟环境
python3 -m venv test
- 激活虚拟环境
切换指定文件夹Windows:/Scripts/macOS:/bin/
执行指令:`activate`
venv 安装 Python 包
-
Python 版本选择
- 进入 python2.7 环境:
python2
- 进入 python3.x 环境:
python3
- 进入 python2.7 环境:
-
pip 安装 Python 包
- 安装 Python2.x 版本的包
- 安装 Python3.x 版本的包
venv 退出和删除
- 退出虚拟环境:deactivate
- 删除虚拟环境:删除环境目录
pip环境管理
pip 概述
-
pip 是 Python 包管理工具
- python2 的 2.7.9 版本开始自带
- python3 的 3.4 版本开始自带
-
pypi.org/ 托管了大量流行的 Python 包
pip 常用命令
功能 | 指令 |
---|---|
查看 pip 版本 | pip -V |
查看帮助文档 | pip help |
查看包列表 | pip list |
导出包列表 | pip freeze |
安装 | pip install 包名 |
升级 | pip install -U 包名 |
卸载 | pip uninstall 包名 |
pip 安装包
- 普通安装
- 指定版本
- 从文件中安装
# 默认安装最新版本
$ 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
pip 升级包
- 升级已安装的 Python 包
$ pip install -U pytest
pip 卸载包
- 卸载 Python 包
# 卸载包$ pip uninstall pytest
pip 使用镜像加速
-
pip install -i 镜像源
-
国内常用源
- 阿里源:Simple Index
- 清华源:Simple Index
- 豆瓣源:Simple Index
# 使用镜像pip install pytest -i https://pypi.douban.com/simple
最后感谢每一个认真阅读我文章的人,礼尚往来总是要有的,虽然不是什么很值钱的东西,如果你用得到的话可以直接拿走:
这些资料,对于【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴上万个测试工程师们走过最艰难的路程,希望也能帮助到你!