ImportError: cannot import name ‘secure_filename‘ from ‘werkzeug‘

感谢阅读

  • 本人报错情况
  • 处理方法

本人报错情况

不止这一个,另外一个包 FileStorage也报错

处理方法


from werkzeug import secure_filename, FileStorage

替换成

from werkzeug.utils import secure_filename
from werkzeug.datastructures import FileStorage

你可能感兴趣的:(Python的那些坑,python,开发语言)