Posts

Install Python 3.6 with Numpy + MKL, SciPy , Matplotlib and Pandas on Windows

1) Download Python 3.6 from https://www.python.org/ Open https://www.python.org/ Scroll on Downloads tab and click on Windows. Choose the latest Python 3 release. Scroll down, you'll see various versions of files used on different operating systems. We need to download the executable file for our system. Download  Windows x86 executable installer  for 32 bit system  Windows x86-64 executable installer  for 64 bit system. 2) Install Python 3.6 Run the .exe ( python-3.6.2.exe or python-3.6.2-amd64.exe) file. Click on Add python 3.6 to PATH. This sets the path in the environment variables. You can cross check this by opening the Environment Variables tab in the Advanced System Settings after the installation is complete. The default installation chooses a very complicated path. Inorder to avoid this, choose Custom Installation and specify a simpler path for installation. Click on Install. 3) Install Numpy + MKL, SciPy , Matplotlib and Pandas Open t...