Python - Sphinx 添加图像出现错误
在chapter1.rst中,我有以下内容:
TEST
****
* Test1
.. image:: ../images/snap.png
当我运行sphinx-build(Sphinx 1.0.7)时,我收到此错误:
发生异常:文件“/usr/lib/python2.6/posixpath.py”,第 70 行,在连接路径 += '/' + b 中 UnicodeDecodeError:“ascii”编解码器无法解码位置 15 中的字节 0xc3:序数不在范围内(128)“
In chapter1.rst, I have the following:
TEST
****
* Test1
.. image:: ../images/snap.png
When I run sphinx-build (Sphinx 1.0.7), I get this error:
Exception occurred: File "/usr/lib/python2.6/posixpath.py", line 70, in join path += '/' + b
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 15: ordinal not in range(128) "
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许 ../images/snap.png 的完整路径不包含 ASCII 字符。
将项目路径更改为纯英文路径,然后重试。
Maybe the full path of ../images/snap.png contain no ASCII char.
Change you project path to an English only path and try again.