Skip to content
This repository was archived by the owner on Dec 11, 2022. It is now read-only.

Commit a543f10

Browse files
fix Intel tensorflow installation issue (#281)
* fix intel tensorflow installation issue * update version
1 parent 5d4b9c7 commit a543f10

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

setup.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,9 @@
6868
if not slim_package:
6969
# For linux wth no GPU, we install the Intel optimized version of TensorFlow
7070
if sys.platform == "linux" or sys.platform == "linux2":
71-
subprocess.check_call(['pip install '
72-
'https://storage.googleapis.com/intel-optimized-tensorflow/tensorflow-1.12.0-cp35-cp35m-linux_x86_64.whl'],
73-
shell=True)
74-
install_requires.append('tensorflow>=1.9.0')
71+
install_requires.append('intel-tensorflow>=1.9.0')
72+
else:
73+
install_requires.append('tensorflow>=1.9.0')
7574
extras['mxnet'] = ['mxnet-mkl>=1.3.0']
7675
else:
7776
if not slim_package:
@@ -86,7 +85,7 @@
8685

8786
setup(
8887
name='rl-coach' if not slim_package else 'rl-coach-slim',
89-
version='0.11.1',
88+
version='0.11.2',
9089
description='Reinforcement Learning Coach enables easy experimentation with state of the art Reinforcement Learning algorithms.',
9190
url='https://github.com/NervanaSystems/coach',
9291
author='Intel AI Lab',

0 commit comments

Comments
 (0)