modulenotefounderror:no module named 'markupsafe._compat' (win10下安裝jupyter遇到的錯誤)
阿新 • • 發佈:2018-12-23
本來參考博文 https://www.cnblogs.com/ningskyer/articles/7590614.html
博文內容如下:#######
命令列中啟動
1 |
jupyter notebook
|
時報錯如題。
解除安裝markupsafe再重新安裝時提示如下
1 |
UnicodeDecodeError:
'utf-8'
codec can't decode
byte
0xd5
in
position 2: invalid continuation
byte |
是解碼器錯誤。
解決方案如下:
通過 cygwin/mingw/git bash 來安裝:
1 |
pip install markupsafe
|
如果使用了虛擬環境virtualenv,則可以將上面python 的 site-packages中下載好的markupsafe相關包,複製到虛擬環境中即可。
##########
我在解除安裝markupsafe的時候,沒有遇到上面的問題。但是解除安裝掉markupsafe又重新安裝之後,把jupyter也重新安裝(就是重新執行命令:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter)。之後jupyter就可以正常啟動了
>>jupyter notebook