python离线安装包

2022/4/3 9:49:26

本文主要是介绍python离线安装包,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1 安装pipdeptree

pip3 install pipdeptree

 

2 生成依赖包列表

pipdeptree -p -f requests

 

3 单独创建requests目标

mkdir requests

pipdeptree -p -f requests > requests.txt

pip3 download -r requests.txt

4 打包文件

zip requests.zip requests/

5 拷贝到目标机器安装

pip install —no-index —find-links=./ -r requests.txt



这篇关于python离线安装包的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程