You are on page 1of 5

What is PIP?

PIP is a package manager for Python packages, or modules if you like.

Install PIP

If you do not have PIP installed, you can download and install it from this
page: https://pypi.org/project/pip/

Manually install PIP on Windows


Pip must be manually installed on Windows. You might need to use the correct version
of the file from pypa.org if you’re using an earlier version of Python or pip. Get the file
and save it to a folder on your PC.

This can be downloaded also from https://bootstrap.pypa.io/pip/pip.pyz. There are also


zip applications for specific
Download a Package
Downloading a package is very easy.
Open the command line interface and tell PIP to download the package you want.
Navigate your command line to the location of Python's script directory, and type the
following:
Now you have downloaded and installed your first package!

Installation of Matplotlib

You can install by pip install matplotlib

Make sure that you already installed setuptools, numpy, python-dateutil, pytz,
pyparsing, and cycler before tha

You might also like