David542
David542

Reputation: 110462

Putting a python path on a windows machine

I am a mac user and have never really used a pc from the command line.

How would I add django-admin.py to my path, so I can type in

> django-admin.py startproject newproject.

I suppoed I'd need to do the following:

1 - Find the python executable `django-admin.py`
2 - Add it to my system path
3 - > ln -s PATH/TO/django-admin.py <my system path>

I know this is a very newbie question, but I'm having trouble 'getting started' on a new windows system to create a new django project.

Upvotes: 1

Views: 258

Answers (1)

Shaunak
Shaunak

Reputation: 18028

Just follow this tutorial. You need to add its full path to 'path' variable.

http://www.computerhope.com/issues/ch000549.htm

Upvotes: 2

Related Questions