ubuntu使用jupyter下载并使用教程
时间: 2023-10-18 15:16:54 浏览: 181
Ubuntu安装Jupyter Notebook教程
1. 安装Anaconda
从Anaconda官网下载对应版本的Anaconda,安装过程中根据提示进行安装。
2. 创建并激活conda环境
打开终端,执行以下命令创建名为"jupyter"的conda环境:
```bash
conda create -n jupyter python=3.7
```
创建完成后,激活该环境:
```bash
conda activate jupyter
```
3. 安装jupyter
在终端中执行以下命令安装jupyter:
```bash
pip install jupyter
```
4. 启动jupyter
在终端中执行以下命令启动jupyter:
```bash
jupyter notebook
```
5. 使用jupyter
在浏览器中输入以下地址,进入jupyter页面:
```bash
http://localhost:8888/
```
在页面中可以创建、打开、编辑jupyter notebook文件,也可以执行代码并查看运行结果。
阅读全文