场景
因为网络隔离,内网又没有相关的源,所以需要自己下载一些三方库。有时候稍不注意,就会少一个依赖库,所以查了一下有无一键下载的参数,果然有。
PS:Linux如果想下载某个软件及其依赖,也有对应的命令~
批量下载某个库及其依赖到指定目录
pip3 download -d ./extras streamlit -i https://pypi.tuna.tsinghua.edu.cn/simple
这个命令就是下载streamlit库及其依赖到extras目录
一键安装呢
pip3 install --no-index --find-links=./extras streamlit
这个命令就是一键安装,会在./extras目录下自动寻找需要的依赖
标签:依赖,pip3,一键,extras,某个,streamlit,下载 From: https://www.cnblogs.com/wswang/p/18021523