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

Update INSTALL.md #455

Merged
merged 1 commit into from
Oct 18, 2022
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
25 changes: 11 additions & 14 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,41 +34,38 @@ mkdir ngen && cd ngen

**Download the Boost Libraries:**

`
```shell
curl -L -O https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.bz2 \
&& tar -xjf boost_1_72_0.tar.bz2 \
&& rm boost_1_72_0.tar.bz2
`
```

**Set the ENV for Boost and C compiler:**

`
```shell
set BOOST_ROOT="/boost_1_72_0"
`
`
set CXX=/usr/bin/g++
`
```

**Get the git submodules:**

`
```shell
git submodule update --init --recursive -- test/googletest
`
`
git submodule update --init --recursive -- extern/pybind11
`
```

**Build NGEN using cmake:**

`
```shell
cmake -B /ngen -S . &&
cmake --build . --target ngen
`
```

**Running the Model:**
`

```shell
./ngen data/catchment_data.geojson "" data/nexus_data.geojson "" data/example_realization_config.json
`
```

---

Expand Down