44👍
The solution i found to the above problem was just removing the south from virtual environment apart from all the changes mentioned above
9👍
You are probably still referencing to South with an import somewhere.
Just:
pip uninstall south
Then:
python manage.py runserver
And resolve import errors.
- Django: ContentTypes during migration while running tests
- Celery – minimize memory consumption
- Selenium: Element not clickable … Other Element Would Receive Click
- Django template to populate bootstrap rows and columns
3👍
Since Django 1.7, migrations are part of the framework. Instead of using South, you probably want to migrate to django.db.migrations.
Generally speaking, you should always read release notes (for 1.7 and 1.8) when doing such an update.
- Django Test Client post() returns 302 despite error on view's post()
- Specific way of requiring one of two fields in django model definition
- Convert requests.models.Response to Django HttpResponse
- Installed Virtualenv and activating virtualenv doesn't work
1👍
Django with version >= 1.7 use built-in migration. You don’t need to use south.
For more details about Django migration framework you can refer release note – https://docs.djangoproject.com/en/1.9/releases/1.7/#schema-migrations
Django docs – https://docs.djangoproject.com/en/1.8/topics/migrations/
Upgading from South – https://docs.djangoproject.com/en/1.8/topics/migrations/#upgrading-from-south
- List fields present in a table
- Django – (OperationalError) FATAL: Ident authentication failed for user "username"
- Is Django Book platform available?
- Get ContentType id in Django for generic relation
0👍
If you are using Django < 1.7, you should also install South >= 1.0.1 if you haven’t already. This is not listed as a dependency for the sake of users who are on Django >= 1.7 and don’t need it.
- Accessing Request Object in Viewset and Serializers in Django Rest Framework?
- Can I have some code constantly run inside Django like a daemon
- Django Inline Formsets using custom form
- Django Full Text SearchVectorField obsolete in PostgreSQL
- Adding forgot-password feature to Django admin site