Lettuce and Django 1.55+ getting ImportError: cannot import name WSGIServerException

StackOverflow https://stackoverflow.com/questions/19966921

  •  30-07-2022
  •  | 
  •  

Question

Just tried integrating Lettuce into my django installation and getting the following error:

Traceback (most recent call last):
  File "manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "/var/www/abc/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 399, in execute_from_command_line
    utility.execute()
  File "/var/www/abc/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 392, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/var/www/abc/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 272, in fetch_command
    klass = load_command_class(app_name, subcommand)
  File "/var/www/abc/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 75, in load_command_class
    module = import_module('%s.management.commands.%s' % (app_name, name))
  File "/var/www/abc/local/lib/python2.7/site-packages/django/utils/importlib.py", line 40, in import_module
    __import__(name)
  File "/var/www/abc/local/lib/python2.7/site-packages/lettuce/django/__init__.py", line 19, in <module>
    from lettuce.django.server import Server
  File "/var/www/abc/local/lib/python2.7/site-packages/lettuce/django/server.py", line 33, in <module>
    from django.core.servers.basehttp import WSGIServerException
ImportError: cannot import name WSGIServerException

I heard that WSGIServerException was removed from django, so how do I get around this?

Was it helpful?

Solution 2

the doc

The undocumented django.core.servers.basehttp.WSGIServerException has been removed. Use socket.error provided by the standard library instead.

i think you can tell "lettuce"'s author,0.0 .or: update "lettuce" python package.

OTHER TIPS

It's fixed on branch master, but it not yet available on PyPI.

You can simply install it from the source:

pip install -e git+https://github.com/gabrielfalcao/lettuce.git#egg=lettuce
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top