1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| # 安装 pipreqs
$ pip install pipreqs
# 检查安装
$ pip show pipreqs
Name: pipreqs
Version: 0.4.10
Summary: Pip requirements.txt generator based on imports in project
Home-page: https://github.com/bndr/pipreqs
Author: Vadim Kravcenko
Author-email: vadim.kravcenko@gmail.com
License: Apache License
Location: /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages
Requires: yarg, docopt
Required-by:
# 在当前工程目录下生成文件
$ pipreqs . --encoding=utf8 --force
INFO: Successfully saved requirements file in ./requirements.txt
|
1
2
| # 使用 requirements.txt 安装依赖
$ pip install -r requirements.txt
|