Looking at the documents by reference, the following is said:
Python (> = 2.7 or> = 3.4)
You can download a version of Python that will work with:
https://www.python.org/downloads/windows/
I would go with the latest version and 64-bit version, since some data analysis libraries did not run in the 32-bit version of Python.
The downloadable Python version will ship with pip , which you can use to install any libraries needed to do your job.
Make sure you set the environment variables if you want to run your programs from the command line or bash terminal.
I installed matplotlib via bash terminal using
pip install matplotlib
Let me know if this helps.
source share