一、创建虚拟环境
查看虚拟环境
创建python虚拟环境
- conda create -n minist python=3.11
复制代码 激活虚拟环境
查看虚拟环境下有哪些包
二、安装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 --set show_channel_urls yes
- conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
复制代码 选择符合版本复制链接,运行所给指令
- conda install pytorch torchvision torchaudio cpuonly -c pytorch
复制代码 三、jupyter添加虚拟环境
base环境中已有conda自带的jupyter,只必要在jupyter中添加虚拟环境
切换到想要添加的虚拟环境
安装ipykernel包
在jupyter中注册内核,实行如下命令
- python -m ipykernel install --user --name minist
复制代码 四、安装其他所需包
Pandas、numpy、tensorboard等
- conda install tensorboard
复制代码 注意:若要在jupyter中嵌入tensorboard图表,必要安装:
- pip install tensorflow-cpu
复制代码 五、运行
返回base环境
进入项目地点环境
- D:
- cd D:\Python-Projects\MINIST
复制代码 输入jupyter notebook的命令
由于我的用户名为中文,以是无法主动跳转,必要手动点击链接
成功进入
点击“Kernel”——“change kernel”将内核换为我们刚刚注册的。
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |