动手学深度学习 | 安装 | 01

动手学深度学习 | 安装 | 01

ssh rowrycho@ip_address # ssh连接服务器
sudo apt update # 更新一下
sudo apt install build-essential # 安装基础C/Cpp编译环境
wget miniconda安装包链接 
bash xxx.sh # 安装miniconda的环境

# 创建一个虚拟环境
conda create -n d2l-zh python=3.8 pip
conda activate d2l-zh

pip install jupyter d2l torch torchvision

# 下载课程代码
git clone https://github.com/d2l-ai/d2l-zh-pytorch-slides

# 启动jupyter 
jupyter notebook

# 把远端8888端口的地址映射到本地8888端口 映射后可以直接点开 
ssh -L8888:localhost:8888 rowrycho@ip_address

# 安装rise插件,可以让jupyter以幻灯片的形式展示
pip install rise 

下面是课程的配套代码,这是slide的版本的

https://github.com/d2l-ai/d2l-zh-pytorch-slides

动手学深度学习 | 安装 | 01

上一篇:17-【go】windows IDE中编译goland项目/文件输出为linux可执行文件


下一篇:[源码解析] 深度学习分布式训练框架 horovod (2) --- 从使用者角度切入