Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add required packages to the singularity definition file #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Singularity
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down