From 74ddc32b293ea92df0c178bf46289c2bbf521242 Mon Sep 17 00:00:00 2001 From: Ryota Suwa Date: Tue, 14 Jan 2020 12:39:55 +0900 Subject: [PATCH] Add required packages to the singularity definition file --- Singularity | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Singularity b/Singularity index 68aa509..0039bac 100644 --- a/Singularity +++ b/Singularity @@ -7,10 +7,14 @@ From: tensorflow/tensorflow:nightly-gpu-py3 # Git apt-get install -y git + # opencv lib + apt-get install -y libsm6 libxext6 + # Ray rllib apt-get install -y libxrender1 pip install --progress-bar off psutil - pip install --progress-bar off -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev2-cp36-cp36m-manylinux1_x86_64.whl + pip install --progress-bar off -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev7-cp36-cp36m-manylinux1_x86_64.whl + pip install --progress-bar off ray[tune] pip install --progress-bar off requests # Multi-agent particle environments @@ -23,6 +27,7 @@ From: tensorflow/tensorflow:nightly-gpu-py3 pip install --progress-bar off pandas pip install --progress-bar off setproctitle pip install --progress-bar off box2d-py + pip install --progress-bar off tensorflow-probability %environment export SHELL=/bin/bash