python3 requirements使用

  • 导出requirements方法

参考 pip/conda导出 requirements.txt 注意事项_刘梓枫的博客-CSDN博客

pip freeze > requirements.txt #可能会丢失依赖包的版本号
# 或者
pip list --format=freeze> requirements.txt


使用pipreqs,这个工具的好处是可以通过对项目目录的扫描,发现使用了哪些库,生成依赖清单。
pip install pipreqs

在python项目的根目录下 使用 pipreqs ./

pipreqs ./ --encoding=utf8
INFO: Successfully saved requirements file in ./requirements.txt

  • 安装requirements方法
pip install -r requirements.txt

实例:

# 指定一个版本
project == 1.3
 
# 指定版本区间
project >=1.2,<2.0
 
# 使用该版本的兼容发行版本
project~=1.4.2
 
# 6.0 以后的特性,可以指定环境
 
# Python 版本小于 2.7 时安装 5.4 版本
project == 5.4; python_version < '2.7'
 
# 仅在 Windows 环境下安装
project; sys_platform == 'win32'

你可能感兴趣的:(python,pycharm,开发语言)