jupyter安装_and_默认路径更改

1. pip升级

2. jupyter notebook 安装

3. jupyter notebook 运行

4. jupyter notebook 默认路径更改

- pip升级

pip3 install --upgrade pip -i https://mirror.baidu.com/pypi/simple

jupyter notebook 安装

pip3 install jupyter -i https://mirror.baidu.com/pypi/simple

jupyter notebook 运行

jupyter notebook

4. jupyter notebook 默认路径更改

默认路径查询

进入jupyter notebook

import os
print(os.path.abspath('.'))

在这里插入图片描述

更改路径

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/un_lock/article/details/113252253