jupyter安装与使用

发布时间 2023-09-26 15:07:34作者: Matt_Cheng

1、检查python版本

python -V
pip -V

2、设置pip源

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config list

# 非https源,须加信任
pip config set install.trusted-host xxx.com

3、安装 & 启动 jupterlab 

pip install jupyterlab
jupyter lab

4、安装 & 启动 notebook

pip install notebook
jupyter notebook