How to install pip on Windows - simpleservices/app_report-python GitHub Wiki
Pip is a tool for installing and managing Python packages, the app_report package will be installed using pip.
Pip isn't installed by default on windows, so we need to install pip in order to install app_report.
- First, you need download the distribute setup file, opening the url below on your browser and save it at c:\
http://python-distribute.org/distribute_setup.py
You may change the next commands based on your Python version and install location, for this example we are using the default location of Python 2.7.t if needed.
-
open the Windows terminal and install distribute executing the following command:
c:\Python27\python.exe c:\distribute_setup.py
-
now, you are able to install pip, just executing the following command:
c:\Python27\Scripts\easy_install.exe pip