Python使用requirements.txt安装类库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python使用requirements.txt安装类库相关的知识,希望对你有一定的参考价值。

摘要:我们为何要应用requirements.txt呢? 首要应用目标: 任何 运用顺序 平常 须要设置装置 所需并 依附 一组类库去知足 事情请求 。 请求 文件 是 指定 战 一次性 装置 包 的 依附项 详细]

我们为什么要使用requirements.txt呢?

主要使用目的:任何应用程序通常需要设置安装所需并依赖一组类库来满足工作要求要求文件指定一次性安装依赖项具体一整套方法

requirements.txt文件格式:

requests==1.2.0 Flask==0.10.1

方法一:

$ pip freeze > requirements.txt

查看源文件

pip的freeze命令用于生成将当前项目的pip类库列表生成 requirements.txt 文件

如果要安装requirements.txt中的类库内容那么可以执行pip install -r requirements.txt.

方法二:

$ pip

 

使用 pipreqs — — pipreqs 用于生成 requirements.txt 文件可以根据需要导入任何项目

为什么不使用pip的Freeze命令呢?

pip的freeze命令保存了保存当前Python环境下所有类库包,其它包括那些你没有在当前项目中使用的类库。 (如果你没有的virtualenv)。

pip的freeze命令只保存与安装在您的环境python所有软件包。

但有时你只想将当前项目使用的类库导出生成为 requirements.txt;

 

使用方法:

$ pip install pipreqs $ pipreqs /path/to/project

 

查看源文件

其他选项详见https://github.com/bndr/pipreqs

以上是关于Python使用requirements.txt安装类库的主要内容,如果未能解决你的问题,请参考以下文章

python requirements.txt的创建及使用

Python 生成requirement 使用requirements.txt

Python使用requirements.txt安装类库

Python使用requirements.txt安装类库

python中的requirements.txt文件的生成和使用

pip 批量安装包