-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportError: cannot import name execute_manager #27
Comments
Hi, TimoRiikonen, Is there any requirements for the version of python? |
Hi, sorry but I don't remember and I don't have this environment any more easily reachable, so I don't have any answer to you. |
First start failure on a fresh installed Debian 8.8 64bit ./manage.py runserver Traceback (most recent call last): my python version django version: |
also dont work on ubuntu 16.04 fresh installed same like above << |
Hi, |
Hi dear |
Root cause:
This project is very old and not maintained any more. In other words scrap it and look for something else.
If you still want to use this, you need to use an earlier Django version than 1.4:
execute_manager deprecated in Django 1.4 as part of the project layout refactor and was removed in 1.6 per the deprecation timeline: https://docs.djangoproject.com/en/1.4/internals/deprecation/#id3
To fix this error you should either install a compatible version of Django for the project or update the manage.py to new style which does not use execute_manager: https://docs.djangoproject.com/en/1.4/releases/1.4/#updated-default-project-layout-and-manage-py Most likely if your manage.py is not compatible with 1.6 then neither is the rest of the project. You should find the appropriate Django version for the project.
The text was updated successfully, but these errors were encountered: