Reputation: 6139
There is a PyCharm Django Console. Am I allowed to run manage.py things in that console, too? What syntax I do enter to e.g. perform
python manage.py syncdb
in the django console?
Upvotes: 0
Views: 4206
Reputation: 57907
You don't actually run it the way you're thinking. To run the manage.py
tasks in PyCharm, you do the following:
Note that on typing an asterisk, PyCharm displays the complete list of available tasks.
Enter
to start the task.Upvotes: 1