大白摸索记:python的jupyter安装以及更改工作环境、浏览器(三)

jupyter安装

  1. 首先安装好python版本,我选择的是3.7.3
  2. 安装jupyter notebook,在cmd中运行
pip install jupyter
  1. 测试jupyter notebook安装成功
jupyter notebook

更改jupyter notebook工作环境

  1. (win+r)打开 cmd 输入命令:jupyter notebook --generate-config
  2. 找到文件 jupyter_notebook_config.py (C:\Users\Administrator.jupyter 中)
  3. 打开该文件 找到 #c.NotebookApp.notebook_dir = ‘’ 并添加(将其修改为):c.NotebookApp.notebook_dir = u’自己的python安装目录’ (注意将#号删除,注意是\双斜线,注意事项,不支持中文,可以有空格)
    大白摸索记:python的jupyter安装以及更改工作环境、浏览器(三)_第1张图片

修改 jupyter notebook 默认浏览器

  1. 打开文件 jupyter_notebook_config.py (C:\Users\Administrator.jupyter 中)
  2. 找到 # c.NotebookApp.browser = ‘’’’
  3. 更新代码
import webbrowser
webbrowser.register('chrome', None, webbrowser.GenericBrowser(u'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe'))
c.NotebookApp.browser = 'chrome'

谷歌浏览器默认目录基本都是这里
在这里插入图片描述

你可能感兴趣的:(python学习笔记)