Thanks for reading this in the first place.
I\'m trying to install Django. So here\'s what I do in the command line:
C:\\>python34 pip install Django
IIRC, pip on Windows installs to C:\Python34\Scripts by default. So, if that's isn't on your system path, you'd actually need to do this:
C:\> \Python34\Scripts\pip install Django
Also, read up in virtualenv and virtualenvwrapper. It'll make your life a lot easier - cheers.