These tools from Anaconda are available on both Windows and Linux systems. See the following install instructions.

Python Data Mining Quick Start Guide
By :

These tools from Anaconda are available on both Windows and Linux systems. See the following install instructions.
To install the distribution, follow these steps given as follows:
$ bash Anaconda-latest-Linux-x86_64.sh
$ source /{anaconda3_dir}/bin/activate
This is will source the Conda activate shell script and call it to activate the base environment, which is the default Anaconda Python bundle. Adding new environments will be discussed in the following section on how to install specific libraries. At this point, passing the Python command will open an interactive shell where you can execute Python code line-by-line, as shown in the following code snippet:
(base) $ Python
Python 3.7.0 (default, Jun 28 2018, 13:15:42)
[GCC 7.2.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.random.random(10)
array([0.48489815, 0.80944492, 0.89740441, 0.93031125, 0.71774534,
0.63817451, 0.93231809, 0.75820457, 0.17550135, 0.62126858])
Alternatively, you can execute the code in a stored Python script by using the following command:
(base) $ Python script.py
To install on Windows, follow the steps given as follows:
Anaconda prompt is a Windows command prompt with all the environment variables set to point to Anaconda. That's it; you are ready to use your base Python environment.
To install on macOS, follow the steps given as follows: