Last active
May 22, 2018 17:40
-
-
Save ravi9/d488ccbd2f0e0f7d42ff1f6636b4d149 to your computer and use it in GitHub Desktop.
Install Intel tensorflow with MKL from python wheel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://repo.continuum.io/archive/Anaconda2-5.0.1-Linux-x86_64.sh | |
bash Anaconda2-5.0.1-Linux-x86_64.sh | |
conda config --add channels intel | |
#For Python 2.7 | |
conda create -n tf_intel_py27 -c intel python=2 pip numpy | |
source activate tf_intel_py27 | |
pip install -i https://pypi.anaconda.org/intel/simple tensorflow | |
#For Python 3.5 | |
conda create -n tf_intel_py35 -c intel python=2 pip numpy | |
source activate tf_intel_py35 | |
pip install -i https://pypi.anaconda.org/intel/simple tensorflow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment