centos7下怎么安装 Jupyter Noteboo6.0
时间: 2024-01-16 22:04:08 浏览: 78
CentOS6.0安装oracle说明
1. 安装 Python 3
Jupyter Notebook 6.0 需要 Python 3.4 或更高版本。如果您的 CentOS 7 没有安装 Python 3,请使用以下命令安装:
```
sudo yum install epel-release
sudo yum install python34 python34-pip
```
2. 安装 Jupyter Notebook
使用以下命令安装 Jupyter Notebook:
```
sudo pip3 install jupyter
```
3. 启动 Jupyter Notebook
使用以下命令启动 Jupyter Notebook:
```
jupyter notebook
```
在浏览器中打开 http://localhost:8888/ 即可访问 Jupyter Notebook。
阅读全文