简体   繁体   English

Flask,IIS,Python,wfastcgi读取WSGI处理程序时发生错误:ImportError:无法导入名称“ Flask”

[英]Flask, IIS, Python, wfastcgi Error occurred while reading WSGI handler: ImportError: cannot import name 'Flask'

My problem is that I'm trying to deploy a simple flask app.py : 我的问题是我正在尝试部署一个简单的flask app.py

from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
    return "Hello from FastCGI via IIS!"
if __name__ == "__main__":
    app.run()

with that web.config : 使用该web.config

<?xml version="1.0" encoding="utf-8"?>
     <configuration>
     <system.webServer>
       <handlers>
        <add name="Python FastCGI" path="*" verb="*" 
        modules="FastCgiModule" scriptProcessor="C:\Python34\python.exe|C:\Python34\lib\site-packages\wfastcgi.py" 
    resourceType="Unspecified" requireAccess="Script" />
       </handlers>
        <httpErrors errorMode="Detailed" />
     </system.webServer>
     <appSettings>
       <!-- Required settings -->
       <add key="WSGI_HANDLER" value="app.app" />
       <add key="PYTHONPATH" value="D:\Web\flaskapp" />
    </appSettings>
</configuration>

i get the error Error: 我收到错误错误:

Error occurred while reading WSGI handler:

Traceback (most recent call last):
  File "C:\Python34\lib\site-packages\wfastcgi.py", line 791, in main
    env, handler = read_wsgi_handler(response.physical_path)
  File "C:\Python34\lib\site-packages\wfastcgi.py", line 633, in read_wsgi_handler
    handler = get_wsgi_handler(os.getenv("WSGI_HANDLER"))
  File "C:\Python34\lib\site-packages\wfastcgi.py", line 616, in get_wsgi_handler
    raise ValueError('"%s" could not be imported%s' % (handler_name, last_tb))
ValueError: "app.app" could not be imported: Traceback (most recent call last):
  File "C:\Python34\lib\site-packages\wfastcgi.py", line 600, in get_wsgi_handler
    handler = __import__(module_name, fromlist=[name_list[0][0]])
  File ".\app.py", line 2, in <module>
    from flask import Flask
ImportError: cannot import name 'Flask'

He dont want import my libs(not all! he can improt time and other like this). 他不想导入我的库(不是全部!他会浪费时间和其他类似的东西)。

build: 建立:

wfastcgi-3.0.0-py3.4.egg-info
Flask-1.0.2.dist-info
python 3.4
IIS 10.0.14393

Big thanks for any help. 非常感谢您的帮助。

只需要使用python 3.4.2 x86。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM