1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

fix Intel tensorflow installation issue (#281)

* fix intel tensorflow installation issue

* update version
This commit is contained in:
shadiendrawis
2019-04-03 13:03:30 +03:00
committed by GitHub
parent 5d4b9c7399
commit a543f10c1a

View File

@@ -68,9 +68,8 @@ 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('intel-tensorflow>=1.9.0')
else:
install_requires.append('tensorflow>=1.9.0')
extras['mxnet'] = ['mxnet-mkl>=1.3.0']
else:
@@ -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',