pip批量导出安装包,批量安装各种包

it2022-05-09  27

pip freeze > requirements.txt # freeze 查询各种安装包的版本, > 重定向到requirements文本,文本名字可随意命名 pip install -r requirements.txt # 安装导出的各种安装包, -r 表示逐行读取安装

  

转载于:https://www.cnblogs.com/joybou/p/10244586.html


最新回复(0)