ImportError: cannot import name ‘soft_unicode‘ from ‘markupsafe‘

打开jupyter notebook报下面的错误:
ImportError: cannot import name ‘soft_unicode‘ from ‘markupsafe‘_第1张图片
这里说是markupsafe有错误,查看一下是否安装了这个包:

pip show markupsafe

ImportError: cannot import name ‘soft_unicode‘ from ‘markupsafe‘_第2张图片
已经有了这个包,但是还报错,经过测试发现这个2.1.3版本不兼容,回退到2.1.0才行。

python -m pip install markupsafe==2.0.1

你可能感兴趣的:(python,jupyter)