Python Manage.py Migrate Doesn't Work On Anaconda
I am new to django; I am trying to finish my first project and I was able to start project but it fails migration. Here is the error code: Traceback (most recent call last): F
Solution 1:
I'm fairly sure you made your project incorrectly. To start a project you use django-admin startproject djangotutorial
and then you navigate to the folder. If the command doesn't work, then your django installation has a problem. Only after that can you use python manage.py makemigrations
.
Post a Comment for "Python Manage.py Migrate Doesn't Work On Anaconda"