From a543f10c1a249f74d6fd1941597b148d249f6a65 Mon Sep 17 00:00:00 2001 From: shadiendrawis Date: Wed, 3 Apr 2019 13:03:30 +0300 Subject: [PATCH] fix Intel tensorflow installation issue (#281) * fix intel tensorflow installation issue * update version --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 9a446fe..b76ffb8 100644 --- a/setup.py +++ b/setup.py @@ -68,10 +68,9 @@ if not using_GPU: if not slim_package: # For linux wth no GPU, we install the Intel optimized version of TensorFlow if sys.platform == "linux" or sys.platform == "linux2": - subprocess.check_call(['pip install ' - 'https://storage.googleapis.com/intel-optimized-tensorflow/tensorflow-1.12.0-cp35-cp35m-linux_x86_64.whl'], - shell=True) - install_requires.append('tensorflow>=1.9.0') + install_requires.append('intel-tensorflow>=1.9.0') + else: + install_requires.append('tensorflow>=1.9.0') extras['mxnet'] = ['mxnet-mkl>=1.3.0'] else: if not slim_package: @@ -86,7 +85,7 @@ extras['all'] = all_deps setup( name='rl-coach' if not slim_package else 'rl-coach-slim', - version='0.11.1', + version='0.11.2', description='Reinforcement Learning Coach enables easy experimentation with state of the art Reinforcement Learning algorithms.', url='https://github.com/NervanaSystems/coach', author='Intel AI Lab',