jupyter installation _and_ default path changes

1. pip upgrade

2. jupyter notebook installation

3. jupyter notebook run

4. Change the default path of jupyter notebook

- pip upgrade

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

jupyter notebook install

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

jupyter notebook run

jupyter notebook

4. Change the default path of jupyter notebook

Default path query

Enter jupyter notebook

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

insert image description here

change path

insert image description here

Guess you like

Origin blog.csdn.net/un_lock/article/details/113252253