numerical25
numerical25

Reputation: 10790

installing django on windows

I am having a bit of a time installing django on my local machine due to the fact that my local machine is windows. One thing I am having issues with is the includes

#!/usr/bin/env python

Every file has this inlclude. I set python in my global varibles so I can call on it like

python

or I can include it like

#!python

but not like

#!/usr/bin/env python

my assumption is that in order for this to work. I probably might have to move my interpreter to a folder called

c:/user/bin/env

Is this the case or is there a better way. I damn for sure dont want to change all the paths in all the folders.

Upvotes: 1

Views: 766

Answers (1)

ceth
ceth

Reputation: 45325

You just need to set PATH environment variable (add path to python) and leave django files as them are.

Upvotes: 2

Related Questions