安装 jupyter notebook 出现 ModuleNotFoundError: No module named 'markupsafe._compat' 错误

Posted Pink.Pig

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装 jupyter notebook 出现 ModuleNotFoundError: No module named 'markupsafe._compat' 错误相关的知识,希望对你有一定的参考价值。

  使用

1 python -m pip install jupyter

  安装完成 jupyter notebook 之后,在命令行界面输入 "jupyter notebook "指令打开时,出现错误:ModuleNotFoundError: No module named \'markupsafe._compat\'

 

  解决方法:在 markupsafe 文件夹下添加一个 .compat.py 文件即可:

  markupsafe 文件夹在 Python 安装路径下:Python ->Python36 -> Lib -> site-packages -> markupsafe  ,比如我的:

1 C:\\Users\\13681\\AppData\\Local\\Programs\\Python\\Python36\\Lib\\site-packages\\markupsafe

  在此文件夹下添加 .compat.py 文件,点此下载(解压后将文件放在 markupsafe 文件夹下即可)。

 

附: .compat.py 文件中内容

 1 # -*- coding: utf-8 -*-
 2 """
 3     markupsafe._compat
 4     ~~~~~~~~~~~~~~~~~~
 5     Compatibility module for different Python versions.
 6     :copyright: (c) 2013 by Armin Ronacher.
 7     :license: BSD, see LICENSE for more details.
 8 """
 9 import sys
10 PY2 = sys.version_info[0] == 2
11 if not PY2:
12     text_type = str
13     string_types = (str,)
14     unichr = chr
15     int_types = (int,)
16     iteritems = lambda x: iter(x.items())
17 else:
18     text_type = unicode
19     string_types = (str, unicode)
20     unichr = unichr
21     int_types = (int, long)
22     iteritems = lambda x: x.iteritems()

 

以上是关于安装 jupyter notebook 出现 ModuleNotFoundError: No module named 'markupsafe._compat' 错误的主要内容,如果未能解决你的问题,请参考以下文章

使用jupyter notebook 时明明已经安装了某个lib,还是出现ModuleNotFoundError

使用jupyter notebook 时明明已经安装了某个lib,还是出现ModuleNotFoundError

使用jupyter notebook 时明明已经安装了某个lib,还是出现ModuleNotFoundError

用 conda 安装 jupyter-themes: 修改 jupyter notebook 的主题

初学python之安装Jupyter notebook

安装 jupyter notebook 出现 ModuleNotFoundError: No module named 'markupsafe._compat' 错误