python 项目如何管理包

pip 包管理器是可以加载文件的,所以我们可以写一个项目所有需要用到的扩展包的文件,然后用pip 统一安装

  1. 生成所需要用到的扩展包
pip freeze > requirements.txt 
  1. requirements.txt(可以用#注释)
xxx==版本号
numpy==1.12.1
#jupyter==1.0.0
#matplotlib==1.5.3
  1. 安装依赖
pip install -r requirements.txt

你可能感兴趣的:(python 项目如何管理包)