下载Pytorch-book中文版即可
本书是1.0.1,因此建conda环境:
# 不要忘了写环境名字
conda create -n pytorchbook python=3.6 pytorch=1.0.1 torchvision
内容在jupyter notebook中打开,如何在Ubuntu服务器中安装使用jupyter notebook?
可参考:从零开始在Ubuntu服务器/电脑上安装并运行jupyter notebook
在Linux服务器中安装并配置Jupyter Notebook
另有一个博客可以参考学习jn:Jupyter Notebook介绍、安装及使用教程
但是Anaconda默认已安装jupyter notebook,并且学院的环境已配置好了,输入:
# allow-root参数,在root用户时使用
jupyter notebook --allow-root
即可打开使用。如果不加–allow-root参数,将报错。
参考了一些博客,安装了nb_conda,没有效果,参考手把手教你如何把jupyter notebook切换到其他配置好的conda虚拟环境
ipykernel
:conda install ipykernel
python -m ipykernel install --name pytorchbook
执行完这个语句之后,会自动在目录【C:\ProgramData\jupyter\kernels】(类似)生成一个【adda】文件夹,里面有kernel.json文件
以上,就可以开始啦