Issue
When I try to run the command:
python manage.py runserver
I get an error stating that there is no module named sqlparse
. I ran the commands
pip install sqlparse
conda install sqlparse
and it says that it's already installed but the error persists.
Solution
You have multiple pythons installed on your system sqlparse is installed somewhere else but your application is using python from somewhere else. For example your app is using C:/Useres/oakej/AppData/../.. but actually sqlparse is installed somewhere else. Please take note of both the paths carefully. It should resolve your issue.
Answered By - Tanzeel Ur Rahman
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.