赞
踩
看了好多大佬的教程,终于给自己老旧电脑成功安装了PyTorch
本电脑安装的软件PyTorch=1.12.1 anaconda版本为conda 4.8.2(anaconda自行安装)
开始前以管理员方式运行anaconda prompt一、安装PyTorch
- conda create -n deep-learning python=3.7
- conda create -n PyTorch python=3.7
- #若需要删除环境则可执行
- #conda remove -n deep-learning --all
- conda activate deep-learning
- conda activate PyTorch
- conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
- conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
- 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
由于是CPU,而不是GPU,故输入固定的代码。(装了国内镜像,下载速度还可以)
conda install pytorch torchvision cpuonly -c pytorch
在PyCharm配置deep-learning(PyTorch),然后输入如下代码验证:
- #python
- import torch
- print(torch.__version__)
其输出结果为:
- C:\ProgramData\Anaconda3\envs\deep-learning\python.exe D:/PyCharm/PyCharm_file/main.py
- 1.12.1
安装成功
感觉最关键的是以管理员的方式打开Anaconda Prompt(以前失败了好多次)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。