I'm new to django and have been going through tutorials on udemy and on the django website. I'm using a virtual environment and Bash on Ubuntu Windows.
My issue is that when I update code in any views.py / urls.py files for my project it doesn't "compile" in the .pyc files. So say I add a home page to my urls list I get an error that the page was not found. Once I go back and delete the .pyc files though I can access a home page (or what ever page) I've added. My work around at the moment is that I wrote a python script to delete the .pyc files.
EDIT: I've noticed that this issue occurs when I have two django projects in the same root folder. I made a another user account in the terminal and tried to have two django files in the same root folder and this issue occurred. Is this improper directory set up for django projects?
|-- home
`-- hlat
|-- djangoproject1
|-- djangoproject2