凌的博客

您现在的位置是: 首页 > 学无止境 > python > 

python

python导出项目依赖库和环境依赖库

2023-09-27 python 213
# 导出项目依赖库
pip freeze > requirements.txt
pip list --format=freeze >requirements.txt
# 安装依赖库
pip install -r requirements.txt

# 其他方法
pip install pipreqs

pipreqs ./
pipreqs ./ --encoding=utf8
pipreqs ./ --encoding='iso-8859-1'
# 导出环境依赖库
pip freeze > environment.txt


文章评论

0条评论