There is no South database module 'south.db.postgresql_psycopg2' for your database

后端 未结 5 1185
轮回少年
轮回少年 2021-01-04 05:10

i new to django and I\'m getting this error from south but i don\'t know what i\'m missing. I search for answers but i can\'t found anything.

There is no Sou         


        
5条回答
  •  遥遥无期
    2021-01-04 05:35

    This happened to me when I upgraded various modules using pip and one of the dependencies automatically upgraded Django to the current version (1.8). You might just check what is your current Django version (pip freeze) and if it's 1.8 just downgrade to 1.6 line (pip install -U "Django<1.7").

提交回复
热议问题