欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

启动jupyter notebook错误

程序员文章站 2022-05-29 09:33:33
...

1 . 当创建新的notebook的时候出现一个错误. Permission denied: Untitled.ipynb

问题分析:应该是设置的工作目录权限不够所致 
解决办法: 
 

chmod 777 ./

或者更改目录 

2 UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 4: ordinal not in range(128)

需要在python目录/lib/python2.7/site-packages/中新建一个文件:
sitecustomize.py,其中包含下列代码。

import sys
sys.setdefaultencoding(‘utf-8’)

随后再修改系统默认编码(可以在环境配置文件中修改):

export LANG=en_US:UTF-8
export LANGUAGE=en_US:en


启动`jupyter notebook``即可解决