也可以在有网的服务器上先弄出requirements.txt ,也就是pip freeze >requirements.txt
然后再
pip download -d packages -r requirements.txt 搞出需要的离线包
最后把package文件夹copy到离线服务器上
pip install --no-index --find-links=packages -r requirements.txt,就安好了
conda 离线安装
于 2023-05-16 14:06:08 首次发布