Skip to main content

Install Codee

Goal

Download, install, and verify that Codee is correctly configured on your system.

  1. Download the Codee package for your operating system.

  2. Extract the contents of the Codee package to the desired location.

  3. The codee binary is located in the bin/ directory of the extracted package. To make codee accessible from your terminal session, you need to add this directory to your system's PATH:

    • [Temporary setup] Run the following command on your current terminal:
    export PATH="$PATH:<codee_dir>/bin"
    • [Persistent setup] Update your system's configuration:
    Add the 'export PATH' command above to your '.bashrc' and restart your
    terminal.
  4. Copy your valid license file to the Codee installation directory and ensure it is named codee.lic. Alternatively, you can set the CODEE_LICENSE_PATH environment variable to the full path of your license file.

  5. Run the following command to display the Codee version installed in your system:

Codee command
codee --version
Codee output
Codee: 2024.4 (rev f9c1543f1558)
License file detected: codee.lic
License flavour: Modern
Remaining time until license expiration: 81 days

C/C++/Fortran source code syntactic parsing based on:
- Clang 20.0
- Flang 20.0
- LLVM 20.0

Supported scientific libraries:
- libmath C11
- CBLAS (levels 1, 2 and 3) 3.10.0
- OpenMP 4.5
- OpenACC 2.7

Included Fortran modules:
- OpenMPI 5.0.5
- NetCDF 4.6.1
- HDF5 1.14.4
- OpenACC 2.6

Supported compilers:
- GNU (gcc, g++, gfortran)
- LLVM (clang, clang++, clang-cl)
- Intel Classic (icc, icpc, ifort)
- Intel LLVM Fortran (ifx)
- Cray (ftn)
- Nvidia (nvfortran)