how to install numpy and pandas on windows how to install numpy and pandas on windows pandas pandas

how to install numpy and pandas on windows


The best resource for third-party modules for Windows is Christoph Gohlke's Python Extension Packages for Windows repository. Each module is available as a self-extracting .exe installer, for use with the python.org version of Python - make sure you get the correct installer for your version and architecture.

While NumPy does not require any other packages, pandas does, so make sure you get them all. The installation order is not important.

The advantages of this resource over a distribution like Anaconda or Enthought is that Dr. Gohlke keeps the packages very up to date, allowing you to run the latest versions of the modules. Additionally, nearly all of the modules have multiple Python versions, while some of the other distributions are only based on Python 2.7.

The disadvantage is that you need to install each package individually, and there is no package manager for handling dependencies.


Best to use a pre-packaged solution, Anaconda or Enthought particularly with windows


Try this: It should work.

Go to the location where you have Python (C:\Python34)Run the blow command:

python -m pip install pandas

NUMPY installed automatically after my Pandas installation.