Ubuntu16.04+GTX060+Pytorch+Anaconda+Python3.6環境配置的各種坑

1參考的博客

包含各種問題,各種折騰
1.https://blog.csdn.net/qq_31531635/article/details/79963188
2.https://blog.csdn.net/wanzhen4330/article/details/81699769
3.https://blog.csdn.net/qq_39938666/article/details/89601658
4.https://blog.csdn.net/qq_42165939/article/details/86181585
5.https://blog.csdn.net/zzq060143/article/details/88042075
6.https://blog.csdn.net/qq_38671976/article/details/84332140
7.https://blog.csdn.net/WannaSeaU/article/details/88427010
8.https://blog.csdn.net/yucicheung/article/details/79095742

2.遇到的坑

1.Pytorch官網上沒有CUDA8.0了,採用下面的方式安裝

pip install https://download.pytorch.org/whl/cu80/torch-1.0.1.post2-cp36-cp36m-linux_x86_64.whl
pip install torchvision

2.直接安裝巨慢無比,添加清華源

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 --set show_channel_urls yes

添加的時候出現有關於yaml的錯誤,解決方法:使用pip安裝升級

3.最終加載模型的時候

import torchvision
1.出現:ModuleNotFoundError: No module named 'Image'錯誤
2.出現:ModuleNotFoundError: No module named 'six'錯誤

解決方法:1.pip install -U pillow將pillow包給更新了
2.pip install -U six 全部更新

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章