# 下载依赖到本地 pip download --destination-directory=/local/wheels -r requirements.txt
# 从本地已经下载的安装依赖 pip install --no-index --find-links=/local/wheels -r requirements.txt
# 从下载的包中构建生成whl文件 pip install wheel pip wheel --wheel-dir=/local/wheels -r requirements.txt
|