Reputation: 358
So I am fairly new to Github and Django for that matter, I was digging around for a template of a website using Django offering user authentication and cam across this
I setup django and python for use within my cmd and using a virtual env and I stepped through the setup list but I'm stuck using:
chmod +x manage.py
I understand this is for use in Unix just wondering how I get the same desired function in windows? as if I skip this step it won't work at all
Upvotes: 0
Views: 62
Reputation: 102842
You don't need to do that, as Windows has no executable bit. Instead of running
./manage.py whatever
just run
python manage.py whatever
making sure that python.exe
is on your PATH
.
Upvotes: 1