python离线安装依赖包

# 1. 批量下载
pip download -r requirements.txt -d ./packages

# 2. 离线安装
pip install --no-index --find-links=./packages -r requirements.txt