jupyter notebook安装清华
时间: 2023-10-12 07:06:25 浏览: 231
Pytorch(cpu+Windows10+Anaconda(Python3.7)+Pycharm+Jupyter Notebook+清华镜像源) 环境搭建
您可以按照以下步骤在清华镜像源上安装jupyter notebook:
1. 打开终端或命令提示符,输入以下命令安装pip(如果已经安装则跳过此步骤):
```
sudo apt-get install python3-pip
```
2. 输入以下命令将pip源更改为清华镜像源:
```
pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
3. 输入以下命令安装jupyter notebook:
```
pip3 install jupyter
```
4. 安装完成后,输入以下命令启动jupyter notebook:
```
jupyter notebook
```
阅读全文