Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
neurips-2021-the-nethack-challenge
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nethack
neurips-2021-the-nethack-challenge
Commits
7b433074
Commit
7b433074
authored
3 years ago
by
jyotish
Browse files
Options
Downloads
Patches
Plain Diff
Fix dependencies
parent
401efc66
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Dockerfile
+8
-16
8 additions, 16 deletions
Dockerfile
apt.txt
+15
-1
15 additions, 1 deletion
apt.txt
environment.yml
+0
-9
0 additions, 9 deletions
environment.yml
requirements.txt
+1
-2
1 addition, 2 deletions
requirements.txt
with
24 additions
and
28 deletions
Dockerfile
+
8
−
16
View file @
7b433074
FROM
nvidia/cuda:10.
1
-cudnn7-runtime-ubuntu18.04
FROM
nvidia/cuda:10.
2
-cudnn7-runtime-ubuntu18.04
ENV
DEBIAN_FRONTEND=noninteractive
RUN
apt
-qq
update
&&
apt
-qq
install
-y
--no-install-recommends
\
wget
\
ca-certificates
\
locales
\
libglib2.0
\
libsm6
\
libxext6
\
libxrender-dev
\
xvfb
\
ffmpeg
\
freeglut3-dev
\
COPY
apt.txt /tmp/apt.txt
RUN
apt
-qq
update
&&
apt
-qq
install
-y
--no-install-recommends
`
cat
/tmp/apt.txt
`
\
&&
rm
-rf
/var/cache/
*
# Unicode support:
...
...
@@ -43,15 +34,16 @@ WORKDIR ${HOME_DIR}
ENV
CONDA_DIR ${HOME_DIR}/.conda
RUN
wget
-nv
-O
miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-py3
7
_4.
8
.2-Linux-x86_64.sh
\
RUN
wget
-nv
-O
miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-py3
8
_4.
9
.2-Linux-x86_64.sh
\
&&
bash miniconda.sh
-b
-p
${
CONDA_DIR
}
\
&&
.
${
CONDA_DIR
}
/etc/profile.d/conda.sh
\
&&
conda clean
-y
-a
\
&&
rm
-rf
miniconda.sh
ENV
PATH ${CONDA_DIR}/bin:${PATH}
RUN
conda
install
cmake
-y
COPY
--chown=
${HOST_UID}:${HOST_GID}
requirements.txt ${HOME_DIR}/requirements.txt
RUN
conda
install
cmake
-y
&&
conda clean
-y
-a
COPY
--chown=
1001:1001
requirements.txt ${HOME_DIR}/requirements.txt
RUN
pip
install
-r
requirements.txt
--no-cache-dir
COPY
--chown=
${HOST_UID}:${HOST_GID}
. ${HOME_DIR}
COPY
--chown=
1001:1001
. ${HOME_DIR}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
apt.txt
+
15
−
1
View file @
7b433074
build-essential
git
cmake
flex
bison
libbz2-dev
wget
ca-certificates
locales
libglib2.0
libsm6
libxext6
libxrender-dev
xvfb
ffmpeg
freeglut3-dev
gcc
g++
\ No newline at end of file
This diff is collapsed.
Click to expand it.
environment.yml
deleted
100644 → 0
+
0
−
9
View file @
401efc66
name
:
nle
dependencies
:
-
python=3.8
-
cmake=3.14
-
numpy
-
pip
:
-
aicrowd-gym
-
-r file:requirements.txt
This diff is collapsed.
Click to expand it.
requirements.txt
+
1
−
2
View file @
7b433074
aicrowd-api
aicrowd-gym
numpy
nle
--no-binary
:all:
nle
--no-binary
=nle
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment