当前位置: 代码迷 >> 综合 >> Python requirements.txt的使用方法
  详细解决方案

Python requirements.txt的使用方法

热度:26   发布时间:2024-02-07 19:59:33.0

在使用Python的时候,需要把安装的Package通过requirements.txt 给导出来,让其他使用者更加方便的安装:

在当前环境执行生成文件:
pip freeze >requirements.txt

生成后的requirements.txt文件是:

pytest==3.8.0
pytest-allure-adaptor==1.7.10
requests==2.18.1

在新的系统下执行下面的命令安装:

pip install -r requirements.txt

在新的console 通过下面的命令来检查:

pip list

转载自:
https://blog.csdn.net/weixin_41407477/article/details/86090430