357 B
357 B
title, createTime, tags
| title | createTime | tags | |
|---|---|---|---|
| python依赖固化 | 2022/04/17 |
|
生成 requirements.txt
pipreqs . --encoding=utf8 --force
如果使用pip freeze > requirements.txt会把当前环境中所有包全列入其中,如果项目运行在单个虚拟环境中时可以使用
安装
pip install -r requirements.txt