Python 依赖管理
pip 添加国内镜像源
一键下载覆盖到 ~/.pip/pip.conf
:
sh
mkdir -p ~/.pip && wget https://raw.staticdn.net/Hansimov/blog/main/docs/notes/configs/pip.conf -O ~/.pip/pip.conf
ini
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
查看 pip 配置:
sh
pip config list
See: pip 使用国内镜像源 | 菜鸟教程
See: pypi | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
安装 pipreqs
sh
python -m pip install pipreqs
生成 requirements.txt
不指定版本:
sh
pipreqs . --force --mode no-pin --encoding=utf-8
兼容版本:
sh
pipreqs . --force --mode compat --encoding=utf-8