博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[python] [转]如何自动生成和安装requirements.txt依赖
阅读量:6757 次
发布时间:2019-06-26

本文共 380 字,大约阅读时间需要 1 分钟。

[转]如何自动生成和安装requirements.txt依赖

在查看别人的Python项目时,经常会看到一个requirements.txt文件,里面记录了当前程序的所有依赖包及其精确版本号。这个文件有点类似与Rails的Gemfile。其作用是用来在另一台PC上重新构建项目所需要的运行环境依赖。

requirements.txt可以通过pip命令自动生成和安装

生成requirements.txt文件

pip freeze > requirements.txt

安装requirements.txt依赖

pip install -r requirements.txt
posted on
2017-08-27 09:16 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/zelos/p/7439599.html

你可能感兴趣的文章
IOC框架之Ninject 简介
查看>>
[转]Reporting Services 中的身份验证类型
查看>>
【转】Centos7安装nodejs
查看>>
SQL Server扩展事件的使用ring_buffer target时“丢失”事件的原因分析以及ring_buffer target潜在的问题...
查看>>
python MLP 神经网络使用 MinMaxScaler 没有 StandardScaler效果好
查看>>
实现html转png
查看>>
python对于0x01的处理
查看>>
jitwatch查看JIT后的汇编码
查看>>
「移动开发云端新模式探索实践」征文活动
查看>>
caffe RandomOrderChannels
查看>>
史莱姆自爆问题
查看>>
MAC 设置环境变量path的几种方法
查看>>
安装部署elasticsearch
查看>>
Bluefish
查看>>
centos 安装cmake 3.3.2
查看>>
ubuntu gitlab服务器搭建
查看>>
文本文件里如何快速在每行头尾都加上指定的内容
查看>>
WebGL绘制有端头的线
查看>>
仿照 ButterKnife 的 Android 注解实例
查看>>
为少欠技术债,开发经理应该做的事
查看>>