2👍
Best way to install python is to install a virtual environment per project. That way you will no longer have path issues.
C:\Python34-64\Scripts\pip3.4.exe install virtualenv -U
C:\Python34-64\Scripts\virtualenv-3.4.exe venv-test
.\venv-test\Scripts\activate
pip3.4.exe install setuptools -U
Note I have installed the 64 bit version of Python34 and the default directory is C:\Python34\
0👍
Use and elevated Cmd Prompt and then py -3.4 -m ensurepip -U --default-pip
to instal pip.
After that use py -3.4 -m pip install Django==1.8.3
- [Answered ]-Django getting database fields with one query
- [Answered ]-How to override save method to change data in Django?
- [Answered ]-How to limit access to various services per user using Django-mama-CAS?
- [Answered ]-I am getting this error using django taggit "Can't call add with a non-instance manager"
Source:stackexchange.com