python项目中的pip安装包

1、单体项目环境

pip freeze > requirements.txt

为什么只适用于单虚拟环境?因为这种方式,会将环境中的依赖包全都加入,如果使用的全局环境,则下载的所有包都会在里面,不管是不时当前项目依赖的,

2、(推荐) 使用 pipreqs ,github地址为: https://github.com/bndr/pipreqs

  • 安装
pip install pipreqs
  • 在当前目录生成
pipreqs . --encoding=utf8 --force

注意 --encoding=utf8 为使用utf8编码,不然可能会报UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xae in position 406: illegal multibyte sequence 的错误。
–force 强制执行,当 生成目录下的requirements.txt存在时覆盖。

3、执行项目需要的依赖包

pip install -r requirements.txt

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