markupsafe._compat出错的解决办法

2018-06-18 01:37:12来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

在windows下用pip进行安装的flask和freeze会在运行程序的时候出现报错

markupsafe._compat出错,那么此时找到对应的pip文件夹下自己创建一个_compat.py

然后复制下边的一段代码。

# -*- coding: utf-8 -*-
"""
    markupsafe._compat
    ~~~~~~~~~~~~~~~~~~
    Compatibility module for different Python versions.
    :copyright: (c) 2013 by Armin Ronacher.
    :license: BSD, see LICENSE for more details.
"""
import sys
PY2 = sys.version_info[0] == 2
if not PY2:
    text_type = str
    string_types = (str,)
    unichr = chr
    int_types = (int,)
    iteritems = lambda x: iter(x.items())
else:
    text_type = unicode
    string_types = (str, unicode)
    unichr = unichr
    int_types = (int, long)
    iteritems = lambda x: x.iteritems()

然后再次运行程序就可以正常启动flask的程序了。

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Django实现cookie&session以及认证系统

下一篇:SyntaxError: Missing parentheses in call to 'print