Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Remove ncurses from readme. #138

Merged
merged 1 commit into from
Nov 27, 2020
Merged
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: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,13 @@ with other gym / RL environments.

## Installation

NLE requires `python>=3.7`, `cmake>=3.14` and some NetHack dependencies
(e.g. `libncurses`) to be installed and available both when building the
NLE requires `python>=3.5`, `cmake>=3.14` to be installed and available both when building the
package, and at runtime.

On **MacOS**, one can use `Homebrew` as follows:

``` bash
$ brew install ncurses cmake
$ brew install cmake
```

On a plain **Ubuntu 18.04** distribution, `cmake` and other dependencies
Expand All @@ -44,7 +43,7 @@ can be installed by doing:
```bash
# Python and most build deps
$ sudo apt-get install -y build-essential autoconf libtool pkg-config \
python3-dev python3-pip python3-numpy git libncurses5-dev flex bison libbz2-dev
python3-dev python3-pip python3-numpy git flex bison libbz2-dev

# recent cmake version
$ wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | sudo apt-key add -
Expand Down