ECL 24.5.10
Basic information
Official Website: https://github.com/roswell/ecl
Installed on: APOLO II
Tested on (Requirements)
OS base: Rocky Linux 8.5 (x86_64) \(\boldsymbol{\ge}\) 8
Compiler GCC 8.5.0
Installation
First of all, we need to create a directory where we will build the software. In this case, we will create a directory called
build_ecl$ mkdir build_ecl
Then, we need to clone the GitHub repository
$ git clone https://github.com/roswell/ecl.git
Then, we can continue with the installation
$ cd ecl $ ./configure --prefix=../build_ecl $ make -j 10 $ make install
Finally, we can add ecl to our PATH environment variable
$ export PATH=$PATH:~/build_ecl/bin