惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
量子位
A
About on SuperTechFans
G
Google Developers Blog
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research

Jupyter

SSL 认证莫名其妙报错了,需要引起警惕吗? 这是什么 jupyter 插件,感觉挺酷 现在人工智能专业这么火,大家 jupyter 常用的一些插件和功能是啥? pycharm 的里的 jupyternotebook 能断点调试吗? Jupyter Notebook 到底是用来干啥的? pycharm 里连接远程 jupyter,自动补全怎么搞? 单元格如何取消关联 jupyter-notebook 内置环境变量问题 Jupyter 里有什么插件 / Kernel 可以实现类似 ob-http 的功能 如何计算重复率统计? 如何在内网环境从 Windows SSH 访问 Linux 服务器 anaconda3 环境下,在 cmd 输入"jupyter lab"显示"Exception: Jupyter command `jupyter-lab` not found." jupyter 中通过 ctypes 调用 printf()时,不显示 printf()打印内容 jupyter 转 markdown 要是能内嵌图片就好了 JupyterLab 插件功能小贴士 Jupyter 的输出窗口可以同时动态刷新两种图吗? 最近整理了一些 Jupyter book 文档 jupyter 怎么读 使用 Jupyter notebook 生成柱状图失败,问题出在哪?? 求助, Jupyter 已经启动,但是网页无法显示 用 Jupyter 写非 Python 体验如何? 写了一些 Jupyter notebook 的扩展插件 Supervisor 无法停止 Jupyter Notebook Jupyter 上的 Lua 与 torch7
jupyter-nbconvert.exe --generate-config 报错 UnicodeEncod...
XIVN1987 · 2020-12-30 · via Jupyter

报错信息为:

  File "c:\python36\venv\lib\site-packages\jupyter_core\application.py", line 156, in write_default_config
    f.write(config_text)
UnicodeEncodeError: 'gbk' codec can't encode character '\xb6' in position 8440: illegal multibyte sequence

查看“jupyter_core\application.py”内容如下:

with open(config_file, mode='w') as f:
    f.write(config_text)

改成:

with open(config_file, mode='w', encoding='utf-8') as f:
    f.write(config_text)

重新执行,执行成功,不再报错

这是 bug 吗?我要去提个 issue 吗?