Bootstrap

【jupyter notebook】安装配置及使用

下载安装

通过python的pip包管理进行下载

pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple

配置

通过命令生成配置文件,并在文件中更换项目文件的打开保存位置

jupyter notebook --generate-config

配置文件在这个位置在C:\Users\< your username>\.jupyter
在这里插入图片描述

  • 使用文本编辑器打开jupyter_notebook_config.py
  • 将以下这行的“#”去掉,并在’'中输入你想要保存的目录位置,例如D:\WorkSpace\jupyter_notebook
    # c.NotebookApp.notebook_dir = ‘’
  • 修改后的内容
    c.NotebookApp.notebook_dir = ‘D:\WorkSpace\jupyter_notebook’
  • 保存并关闭文件
    打开powershell

输入命令

jupyter notebook

有入下打印,表示启动成功
在这里插入图片描述

使用

点击此处创建一个新的工程
在这里插入图片描述
点击Untitled可以修改工程名,键盘shift+enter可以执行当前行的代码
在这里插入图片描述

;