📚博客主页:knighthood2001
✨公众号:认知up吧 (目前正在带领大家一起提升认知,感兴趣可以来围观一下)
🎃知识星球:【认知up吧|成长|副业】介绍
❤️如遇文章付费,可先看看我公众号中是否发布免费文章❤️
🙏笔者水平有限,欢迎各位大佬指点,相互学习进步!
首先,pytorch库挺大的,建议你更换源。
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --set show_channel_urls yes
然后我去pytorch官网上找对应命令
conda install pytorch torchvision torchaudio pytorch-cuda=12.1
出现了这些报错
早间听闻conda安装会出错误,果然,那我就选择pip安装吧
输入
pip3 install torch torchvision torchaudio
这样就安装好了。
使用pip list查看一下库
完成