Use a production WSGI server instead(搭建web网站出现的问题)

今天使用flask来搭建web网站的时候,出现了以下问题

* Serving Flask app "wt" (lazy loading)
* Environment: production
WARNING: Do not use the development server in a production environment.
Use a production WSGI server instead.

·······························································

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 2: invalid start byte
 

Use a production WSGI server instead(搭建web网站出现的问题)_第1张图片

 Use a production WSGI server instead(搭建web网站出现的问题)_第2张图片

解决方法: 

这个是因为计算机名是中文的,我们需要将其更改为英文的

Use a production WSGI server instead(搭建web网站出现的问题)_第3张图片

Use a production WSGI server instead(搭建web网站出现的问题)_第4张图片 

错误成功解决 

Use a production WSGI server instead(搭建web网站出现的问题)_第5张图片

 

你可能感兴趣的:(Python)