Wiki

Clone wiki

Flink / Compilation and Installation

Compilation and Installation

Flink is hosted on bitbucket and can be downloaded with the command:

git clone --recurse-submodules https://bitbucket.org/WegmannLab/flink.git

After the download, the code must be compiled to obtain an executable. It is recommended to use the GNU C++ compiler g++, which is part of the GCC package and is pre-installed on any Linux system. On a Mac, g++ can be installed as part of the developer tools.

Compile Flink in the base folder typing:

cd flink

make clean

make

and now Flink is ready to go! Check out how to launch and use Flink.

Updated