Add “django-admin.py” path to command line on Windows 7

Try following command.

set path=%path%;c:\python27\scripts

PATH is set only for the cmd.exe in which you run the above command.

UPDATE

To permanently set PATH:

  1. Right click My computer in the desktop.
  2. Click Advanced System Settings on the left.
  3. Click Environmental Variable.
  4. Add or Update PATH variable:
    • If it does not exist, create one, and set value as C:\python27\scripts
    • If it exist, append ;C:\Python27\scripts to existing value.
  5. Restart cmd.exe. (PATH will not change for already launched cmd.exe)

Leave a Comment