Pydev error while creating new django project

I keep getting this error every time I create a new django project using titanium (eclipse) with pydev. In fact, he created the settings.py file. I wonder what makes this error and how to fix it?

Error

+3
source share
2 answers

This is really PyDev's problem with Django 1.4. A new release (2.5.0) will be released later this week, properly supporting layout changes in Django 1.4.

You can still use the project created in this way, but you need to do some manual things:

  • Move the contents inside the folder created in your module (it was a structural change made in django 1.4)

  • Settings.py parameters will not contain information that you entered in the wizard (for example: manually edit settings.py)

  • In the django project properties (right click on the project> properties and check the django properties page), you must set the correct settings in the settings module and manage.py.

+3
source

I upgraded my pydev today to the latest version and now it works just fine ...

0
source

Source: https://habr.com/ru/post/913784/


All Articles