yanchang
yanchang
发布于 2025-05-03 / 19 阅读
0
0

linux环境下安装MINIconda,建立py38环境并且安装jupyter

闲言

今天陪宝贝出去吃点点好吃的,又去吃了烤鱼,理发,逛超市商场,好想来,然后五六个小时就过去了,晚上回来继续学习

🛠 步骤 1:安装 Miniconda

  1. 下载 Miniconda 安装脚本

    wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

  1. 运行安装脚本

    bash Miniconda3-latest-Linux-x86_64.sh

按照提示完成安装过程。

然后重启终端或运行 source ~/.bashrc 使配置生效。


🐍 步骤 2:创建 Python 3.8 环境

conda create -n py38 python=3.8

激活新环境:

conda activate py38


📓 步骤 3:安装 Jupyter Notebook

py38 环境中安装 Jupyter:

conda install jupyter

https://zh.d2l.ai/

以上是李沐环境安装全过程上面的链接是课程资源下载的地方。


评论