Intel Distribution for Python is available for all modorn operating systems including Windows, Linux, and MacOS. For me, it is worth to try this Python distribution for your projects, especially scientific computing projects. By the way, it is free of charge.
Here are the optimized Python packages developed by Intel on top its original version.
This software is mainly developed for
As the installation of Intel Distribution for Python has been well described at its homepage, select the OSs on which you want Python to be installed. The installer can be download from https://software.seek.intel.com/python-distribution.
If using the stand-alone installer, complete the following steps:
To modify only your current command shell, use the .\Scripts\activate command.
If using the stand-alone installer, complete the following steps:
You can use both PIP or Conda to install full pacakages or individial packages. However, I found that the Intel's packages available on Conda server is a bit updated ahead of those on PIP. So if you are using Anaconda's Python distribution, I strongly suggest you use conda.
To avoid confusion between projects and packages, we can command conda to create us a new environment, install specific version of Python, and packages at the same time. The following steps are example of installation of Intel's Python and some packages.
1. Update conda
conda update conda
2. Create new empty environment, Python 3, and Intel's Python 3.
conda create -n intel -c intel intelpython3_full python=3
3. Enter environment
activate intel
4. Install packages
conda install numpy scipy scikit-learn pydaal tbb4py
The following is a complete list of Python packages included in Intel Distribution for Python suite.
Rangsiman Ketkaew