跑jupyter的时候报错ImportError: cannot import name ‘soft_unicode‘ from ‘markupsafe‘

问题

跑jupyter的时候报错ImportError: cannot import name ‘soft_unicode‘ from ‘markupsafe‘_第1张图片

解决方案

  1. 最开始跑了一下指令:pip install markupsafe==2.0.1,报错了,版本不兼容
    在这里插入图片描述
  2. 在网上找了一个问题,一并解决,指令:sudo pip install flask_sqlalchemy --use-feature=2020-resolver
    跑jupyter的时候报错ImportError: cannot import name ‘soft_unicode‘ from ‘markupsafe‘_第2张图片
  3. 最后成功跑起来了jupyter notebook --allow-root
    跑jupyter的时候报错ImportError: cannot import name ‘soft_unicode‘ from ‘markupsafe‘_第3张图片

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