pip安装jupyter

版权声明:版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/abc666666_6/article/details/84259608

安装

在cmd中键入以下内容

pip install --upgrade pip

pip install jupyter

更改启动目录

查看配置文件

(forDA) C:\Users\TheUserName>jupyter notebook --generate-config
Writing default config to: C:\Users\TheUserName\.jupyter\jupyter_notebook_con
fig.py

打开upyter_notebook_config.py文件
修改以下内容

## The directory to use for notebooks and kernels.
# c.NotebookApp.notebook_dir = ''

## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = 'E:\pythonNote'

启动

键入

jupyter notebook

即可

猜你喜欢

转载自blog.csdn.net/abc666666_6/article/details/84259608