# d2lNote
**Repository Path**: ShixiangWang/d2lNote
## Basic Information
- **Project Name**: d2lNote
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-03-19
- **Last Updated**: 2021-03-29
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Dive into Deep Learning Note
- 课程网址:
- 图书:[动手学深度学习](https://d2l.ai/)
- PyTorch 教程:
### 安装
```sh
conda create --name d2l python=3.8 -y
conda activate d2l
pip install torch torchvision -f https://download.pytorch.org/whl/torch_stable.html
# -U: Upgrade all packages to the newest available version
pip install -U d2l
```
上面的环境安装可以跳过。
启动:
```sh
jupyter notebook
```
### 测试(CPU 版本)
```python
import torch
torch.__version__
```