Skip to content
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
9 changes: 5 additions & 4 deletions doc/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,16 @@ Requirements
- *Debian/Ubuntu:* `sudo apt-get install cmake file cmake-curses-gui`
- *Arch Linux:* `sudo pacman --sync cmake`

- **OpenMPI** 1.4 or higher
- **OpenMPI** 1.5.1+ / **MVAPICH2** 1.8+ or similar
([GPU aware](https://devblogs.nvidia.com/parallelforall/introduction-cuda-aware-mpi/) install recommented)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get an Access Denied error with this URL.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

http:// instead of https:// works fine

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was suprised by that some days ago, too and wrote that to nvidia.

I will change the link to http:// in the mean time, I thought the complete webpage is down :)
Update: no does not make sense, the site uses https in internal links again. I will contact the support. Pls merge at the meantime and don't worry.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK.

- *Debian/Ubuntu:* `sudo apt-get install libopenmpi-dev`
- *Arch Linux:* `sudo pacman --sync openmpi`

- **zlib**
- *Debian/Ubuntu:* `sudo apt-get install zlib1g-dev`
- *Arch Linux:* `sudo pacman --sync zlib`

- **boost** 1.49.0-1.55.0 ("program options", "regex" , "filesystem", "system" and nearly all compile time libs)
- **boost** 1.49.0+ ("program options", "regex" , "filesystem", "system" and nearly all header-only libs)
- download from [http://www.boost.org/](http://sourceforge.net/projects/boost/files/boost/1.49.0/boost_1_49_0.tar.gz/download),
e.g. version 1.49.0
- *Debian/Ubuntu:* `sudo apt-get install libboost-program-options-dev libboost-regex-dev libboost-filesystem-dev libboost-system-dev`
Expand All @@ -63,13 +64,13 @@ We recomment to install at least **pngwriter**.

- **pngwriter** >= 0.5.5
- download our modified version from
[github.com/ax3l/pngwriter](https://github.com/ax3l/pngwriter)
[github.com/pngwriter/pngwriter](https://github.com/pngwriter/pngwriter)
- Requires [libpng](http://www.libpng.org/),
- *Debian/Ubuntu:* `sudo apt-get install libpng-dev`
- *Arch Linux:* `sudo pacman --sync libpng`
- example:
- `mkdir -p ~/src ~/build ~/lib`
- `git clone https://github.com/ax3l/pngwriter.git ~/src/pngwriter/`
- `git clone https://github.com/pngwriter/pngwriter.git ~/src/pngwriter/`
- `cd ~/build`
- `cmake -DCMAKE_INSTALL_PREFIX=~/lib/pngwriter ~/src/pngwriter`
- `make install`
Expand Down