Osmanthus

空想具現化


  • 首页
  • 归档
  • 分类
  • 标签
  • 关于
  •   

© 2024 Homurax

UV: | PV:

Theme Typography by Makito

Proudly published with Hexo

pip离线安装依赖库

发布于 2019-11-22 Python  pip 

记录下命令,下载所需依赖库,在不能联网的机器上离线安装。

# 查看
pip list

# 依赖库信息格式输出
pip freeze > requirements.txt

# 仅下载
pip download -r requirements.txt

# 安装
pip install --no-index --find-links=dir_path -r requirements.txt

 上一篇: Python脚本 discuz论坛登录 下一篇: Python打包Java Maven项目并上传服务器 

© 2024 Homurax

UV: | PV:

Theme Typography by Makito

Proudly published with Hexo