赞
踩
官网https://www.python.org/downloads/windows/
本次使用的版本是 python3.10.10
python -V
注意:V大写
注意:镜像源添加一个
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
网易:http://mirrors.163.com
打开文件夹:%HOMEPATH%
即:C:\Users\【当前用户名】
在该文件夹下新建文件夹,命名为pip
在新建的pip文件夹下新建记事本,命名为pip.ini
pip.ini文件中写入
[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
或者
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
python -m pip install --upgrade pip
官网https://conda.io/en/latest/miniconda.html
本次使用的版本是conda 23.1.0
conda --version
安装完成后,在开始菜单中可以找到Anaconda Prompt
在打开的Anaconda命令行中输入以下代码
前两个是清华镜像,第三个是阿里镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://pypi.tuna.tsinghua.edu.cn/simple
conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/main/
conda config --get channels
删除镜像源
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
默认环境是base,通过新建独立环境,来防止安装包之间的关联
conda create -n 环境名称
新建环境的同时拷贝base环境
conda create -n 环境名称 --clone base
conda activate 环境名称
conda deactivate
conda remove -n 环境名称 --all
conda create -n py1
conda create -n py2 --clone py1
conda remove -n py2 --all
conda env list
或
conda info --env
打开Anaconda命令行
输入以下代码:
pip install jupyter
在命令行(cmd)中输入以下代码:
jupyter notebook
会自动打开一个网页
通过修改运行时的所在路径,可以使网页展示对应路径下的文件
打开Anaconda命令行
输入以下代码:
pip install d2l==0.17.0
注意:不指定版本号会导致错误
官网https://pytorch.org/get-started/locally/
经过多次尝试,有以下两种方法:
例如:
conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
-i https://pypi.tuna.tsinghua.edu.cn/simple
例如:
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117 -i https://pypi.tuna.tsinghua.edu.cn/simple
查看pytorch是否安装成功
python代码运行:
import torch
torch.cuda.is_available()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。