pytorch学习第一篇:conda配置jupyter notebooks pytorch

安装jupyter notebooks

创建一个pytorch的环境

conda create -n pytorch python=3.10
conda activate pytorch

安装jupyter notebook,运行命令

conda install jupyter notebook

启动jupyter
运行命令

jupyter notebook

或者
pytorch学习第一篇:conda配置jupyter notebooks pytorch_第1张图片

notebook查看pyhton版本

import sys
print(sys.version)
print(sys.executable)

可看出用的python是pytorch下的python
pytorch学习第一篇:conda配置jupyter notebooks pytorch_第2张图片

pytorch安装

官网链接
https://pytorch.org/get-started/locally/
pytorch学习第一篇:conda配置jupyter notebooks pytorch_第3张图片
这里我的是cuda12.1
复制命令

pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121

安装完成

查看是否可以正常使用cuda

import torch
torch.cuda.is_available()

pytorch学习第一篇:conda配置jupyter notebooks pytorch_第4张图片

查看版本
pytorch学习第一篇:conda配置jupyter notebooks pytorch_第5张图片

你可能感兴趣的:(Pytorch学习,conda,jupyter,ide)