批量下载requirements.txt中的第三方库
命令:
pip wheel -w target_file_path -r requirements.txt
在windows环境中下载linux需要的包,通过 pip download
命令:
pip download -d . torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html --platform=linux_x86_64 --only-binary=:all: