python2 + selenium + eclipse 中,配置好runserver 127.0.0.1:9000,运行的时候,报错

时间:2023-12-10 14:26:44

python2 + selenium + eclipse 中,配置好runserver 127.0.0.1:9000,运行的时候,报错,如图:

python2 + selenium + eclipse 中,配置好runserver 127.0.0.1:9000,运行的时候,报错

原因:
      google发现是WSGI application的问题,好象是因为django升级,配置有所变化。
 

原来:

import django.core.handlers.wsgi

application = django.core.handlers.wsgi.WSGIHandler()

改成:

from django.core.wsgi import get_wsgi_application

application = get_wsgi_application()

重启一下uwsgi。

网上找来的解决办法,希望有帮助。

后补:也可能是python版本和django版本不兼容问题,重新安装django并选定安装的版本就可以了
解决:应该执行manage.py

python2 + selenium + eclipse 中,配置好runserver 127.0.0.1:9000,运行的时候,报错