jupyter notebook 设置默认浏览器打开报错 SyntaxError: (unicode error) ‘utf-8‘ codec can‘t decode byte 0xd4

jupyter notebook 设置默认浏览器打开报错
SyntaxError: (unicode error) ‘utf-8’ codec can’t decode byte 0xd4 in position 0: invalid continuation byte

win系统自带的记事本默认的编码是 ANSI ,只需把py脚本用笔记本重新打开,
另存为编码为 UTF-8 的py脚本,在运行py脚本就ok了。

修改文件的名字 : jupyter_notebook_config.py
jupyter notebook 设置默认浏览器打开报错 SyntaxError: (unicode error) ‘utf-8‘ codec can‘t decode byte 0xd4

代码参考

import webbrowser 
webbrowser.register( "Cent Browser", None, webbrowser.GenericBrowser(r"C:\Users\中文用户名\AppData\Local\CentBrowser\Application\chrome.exe"))
c.NotebookApp.browser = "Cent Browser"

设置默认浏览器,cmd 输入

jupyter notebook --generate-config

找到默认配置文件的py文件
用记事本打开,并找到 # c.NotebookApp.browser =这个语句
在该语句下方,输入以下语句: 下图是Chrome的配置,** 注意双 \\ **

# c.NotebookApp.password = '' 这里
import webbrowser
webbrowser.register('chrome', None, webbrowser.GenericBrowser(u'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe'))
c.NotebookApp.browser = 'chrome'
上一篇:c++中不需要显示指出struct


下一篇:解决 gcc: error: ../common/maskApi.c: No such file or directory 问题 in DCN