Install Codee
Goal
Download, install, and verify that Codee is correctly configured on your system.
-
Download the Codee package for your operating system.
-
Extract the contents of the Codee package to the desired location.
-
The
codee
binary is located in thebin/
directory of the extracted package. To makecodee
accessible from your terminal session, you need to add this directory to your system'sPATH
:- [Temporary setup] Run the following command on your current terminal:
- Linux (Bash)
- Windows (cmd.exe)
- Windows (PowerShell)
export PATH="$PATH:<codee_dir>/bin"
set PATH="%PATH%;<codee_dir>\bin"
$env:path += ";<codee_dir>\bin"
- [Persistent setup] Update your system's configuration:
- Linux (Bash)
- Windows
Add the 'export PATH' command above to your '.bashrc' and restart your
terminal.Find and update the 'PATH' variable under the System Settings and restart
your terminal. -
Copy your valid license file to the Codee installation directory and ensure it is named
codee.lic
. Alternatively, you can set theCODEE_LICENSE_PATH
environment variable to the full path of your license file. -
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)