diff options
| author | chzhang <zch921005@126.com> | 2023-03-12 14:44:57 +0800 |
|---|---|---|
| committer | chzhang <zch921005@126.com> | 2023-03-12 14:44:57 +0800 |
| commit | f9b5b5034f13dfd2ad4c08f0b1e4c93e44cecfc0 (patch) | |
| tree | b65fea551477d2170d2e0aaf0979d5ed5c1265c1 /fun_tools | |
| parent | 4e8e30b8bebf14775c966067550832e9cb175117 (diff) | |
nb extension
Diffstat (limited to 'fun_tools')
| -rw-r--r-- | fun_tools/jupyter_extentisons.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/fun_tools/jupyter_extentisons.md b/fun_tools/jupyter_extentisons.md new file mode 100644 index 0000000..1351cec --- /dev/null +++ b/fun_tools/jupyter_extentisons.md @@ -0,0 +1,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 +
\ No newline at end of file |
