Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

South error, but not using it. "no South database module 'south.db.mysql'"

After installing of Django I get this error message (when I want to run migrations or runserver):

There is no South database module 'south.db.mysql' for your database. Please either choose a supported database, check for SOUTH_DATABASE_ADAPTER[S] settings, or remove South from INSTALLED_APPS.

I dont want to use South and it is also not defined in INSTALLED_APPS . Why am I getting this error?

like image 542
Alex Avatar asked Dec 20 '22 03:12

Alex


1 Answers

I got the same error. It is resolved by removing south from your environment , by running pip uninstall south

like image 88
Aman Jhunjhunwala Avatar answered Dec 24 '22 02:12

Aman Jhunjhunwala