李沐深度学习环境安装mac
时间: 2023-12-17 12:26:41 浏览: 174
李沐的动手学深度学习的windows环境安装说明
以下是在Mac上安装李沐深度学习环境的步骤:
1.安装包管理工具Homebrew。在终端中输入以下命令:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
2.安装Miniforge。在终端中输入以下命令:
```
brew install --cask miniforge
```
3.创建虚拟环境。在终端中输入以下命令:
```
conda create -n d2l python=3.8
```
4.激活虚拟环境。在终端中输入以下命令:
```
conda activate d2l
```
5.安装PyTorch。在终端中输入以下命令:
```
pip install torch torchvision torchaudio
```
6.下载李沐Jupyter文件。在终端中输入以下命令:
```
git clone https://github.com/d2l-ai/d2l-en.git
```
7.启动Jupyter Notebook。在终端中输入以下命令:
```
cd d2l-en
jupyter notebook
```
8.在浏览器中打开Jupyter Notebook,并选择要运行的代码。
阅读全文