赞
踩
两步解决conda安装pytorch时下载速度慢or超时的问题_anaconda下载pytorcg太慢-CSDN博客
pip安装包超时的几种解决办法 - 知乎 (zhihu.com)
谢谢你,超时侠!
困扰我整整一个周末的问题(详见上篇文章)
然后一定一定要避坑的是
- # CUDA 11.7
- pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2
- # CUDA 11.8
- pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 --index-url https://download.pytorch.org/whl/cu118
前者是cpu版本的,要安装后者有cu118的!!!(要安装cu117可以把118改成117!)
但是尚不确定为什么最新的是用pip3 而旧的统一用pip(最新pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118)
也尚不确定为什么是这样的:
然后发现只要 一安装成功,后面再次
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 --index-url https://download.pytorch.org/whl/cu118 就不会超时了
神奇!
结果最新的安装成功了。再也不用加上–default-timeout=1000。
笔者还发现,如果channels只有defaults,当你输入pip install torch==2.0.1+cu118
依然会导致Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple然后报错
但是conda config --show 的结果:
channels:
- defaults
default_channels:
- https://repo.anaconda.com/pkgs/main
- https://repo.anaconda.com/pkgs/r
- https://repo.anaconda.com/pkgs/msys2
莫非系统会自动地识别我在中国所以用上了清华源!?(所以还是去官方下载吧)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。