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

  使用python

1 python -m pip install jupyter

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

 

  解决方法:在 markupsafe 文件夹下添加一个 .compat.py 文件便可:命令行

  markupsafe 文件夹在 Python 安装路径下:Python ->Python36 -> Lib -> site-packages -> markupsafe  ,好比个人:code

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

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

 

附: .compat.py 文件中内容ip

 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()
相关文章
相关标签/搜索