Skip to content

Instantly share code, notes, and snippets.

@ravi9
Last active May 22, 2018 17:40
Show Gist options
  • Save ravi9/d488ccbd2f0e0f7d42ff1f6636b4d149 to your computer and use it in GitHub Desktop.
Save ravi9/d488ccbd2f0e0f7d42ff1f6636b4d149 to your computer and use it in GitHub Desktop.
Install Intel tensorflow with MKL from python wheel
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