Rate This Document
Findability
Accuracy
Completeness
Readability

Installing CMake

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Run the following command to decompress the CMake installation package:

    The CMake version must be 3.4.3 or later for GROMACS 2019.3.

    tar zxvf cmake-3.8.1.tar.gz
  3. Run the following command to switch to the directory generated after the package is decompressed:
    cd cmake-3.8.1
  4. Run the following command to perform configuration:
    ./configure --prefix=/path/to/CMAKE
  5. Run the following commands to perform compilation and installation:
    make
    make install
  6. Run the following command to set the CMake environment variables:
    export PATH=/path/to/CMAKE/bin:$PATH