File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ FROM ray-project/deploy
55# This updates numpy to 1.14 and mutes errors from other libraries
66RUN conda install -y numpy
77RUN apt-get install -y zlib1g-dev
8+ # The following is needed to support TensorFlow 1.14
9+ RUN conda remove -y --force wrapt
810RUN pip install gym[atari] opencv-python-headless tensorflow lz4 keras pytest-timeout smart_open
911RUN pip install -U h5py # Mutes FutureWarnings
1012RUN pip install --upgrade bayesian-optimization
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ FROM ray-project/base-deps
77RUN pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev1-cp27-cp27mu-manylinux1_x86_64.whl boto3
88# We install this after the latest wheels -- this should not override the latest wheels.
99RUN apt-get install -y zlib1g-dev
10+ # The following is needed to support TensorFlow 1.14
11+ RUN conda remove -y --force wrapt
1012RUN pip install gym[atari]==0.10.11 opencv-python-headless tensorflow lz4 keras pytest-timeout smart_open
1113RUN pip install --upgrade bayesian-optimization
1214RUN pip install --upgrade git+git://github.com/hyperopt/hyperopt.git
You can’t perform that action at this time.
0 commit comments