Python

 

 

 

 

PIP

 

PIP is a package management program that let you install or upgrade various packages written in Python. In terms of operation(usage), it works very similary to Linux software management tool like apt-get or yum. So if you have a little bit of experience of Linux, PIP operation would already look familiar with you. If you don't have any experience with Linux, don't worry. PIP is very simple and handy command line program that comes with Python installation by default.

 

 

Upgrade to the latest PIP

 

PIP is being updated indepently from Python framework. So the pip in your current Python installation package may not be the latest version of PIP.

You can upgrade pip itself using python as shown below.

 

C:\Python35>python -m pip install --upgrade pip

 

Collecting pip

  Downloading pip-9.0.1-py2.py3-none-any.whl (1.3MB)

    100% |################################| 1.3MB 356kB/s

Installing collected packages: pip

  Found existing installation: pip 7.1.2

    Uninstalling pip-7.1.2:

      Successfully uninstalled pip-7.1.2

Successfully installed pip-9.0.1

 

 

NOTE : If the pip is not the latest one, you may get a message as shown below when you install a package with PIP.

 

C:\Python35>pip install package_name.whl

pandas-0.19.2-cp27-cp27m-manylinux1_x86_64.whl is not a supported wheel on this platform.

You are using pip version 7.1.2, however version 9.0.1 is available.

You should consider upgrading via the 'python -m pip install --upgrade pip' command.