深度学习
2024年7月29日小于 1 分钟
资料
动手学深度学习:https://zh-v2.d2l.ai/
B站课程:https://www.bilibili.com/list/1567748478?sid=358497&spm_id_from=333.999.0.0&desc=1&oid=417143579&bvid=BV1CV411Y7i4&p=2
# 1.本地安装
#[可选]使用 conda/miniconda环境
$ conda env remove d2l-zh
$ conda create -n -y d2l-zh python=3.8 pip
$ conda activate d2l-zh
# 2.安装需要的包
$ pip install -y jupyter d2l torch torchvision
# 3.下载代码并执行
$ wget https://zh-v2.d2l.ai/d2l-zh.zip
$ unzip d2l-zh.zip
$ jupyter notebook
pyenv 结合 miniconda 实现环境控制
$ pyenv local miniconda3-3.11-23.10.0-1/envs/d2l-zh # 切换环境
$ pip install torch==1.12.0
$ pip install torchvision==0.13.0
$ pip install d2l==0.17.6
$ pip install rise # jupyter 幻灯片演示插件
# jupyter 命令
$ jupyter notebook
jupyter notebook -- OSError: [Errno 49] Can't assign requested address
https://blog.csdn.net/keineahnung2345/article/details/84333636