Notes

Python 依赖管理

将第三方依赖导出为文件

pip freeze > requirements.txt

根据依赖文件安装依赖

pip install -r requirements.txt