blob: 1351cec0b16b5919a43416054571affa32ce05a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
- 创建虚拟环境用于测试
```
conda create -n jpt python=3.8 -y
conda activate jpt
```
- 安装 jupyter
```
pip install jupyter
```
- 注意 notebook(会在安装 jupyter 时自动安装 notebook) 的版本
```bash
pip install notebook==6.1.5
```
- 安装拓展
```
pip install jupyter_contrib_nbextensions
pip install jupyter_nbextensions_configurator
jupyter contrib nbextension install --user
```
- 几个常用的拓展
- ExcecuteTime
- Table of Contents
- Variable Inspector
- Autopep8
|