Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • GCC v8.3.0

    The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, and Go, as well as libraries for these languages. There should be a system installation with the required version on the Marconi cluster. Just use the module to load it as below:

    Code Block
    languagebash
    module load gnu/8.3.0


  • Perl v5

    The v5.16.3 version should be immediately available as part of the system.

  • GNU Autoconf v2.69

    The v2.69 version should be immediately available as part of the system.


  • GNU Automake v1.15

    To install automake version 1.15 follow these steps:


    1.
    Lp.Normal wayUsing Spack

    1. Code Block
      languagebash
      cd ~/public/temp
    Code Block
    languagebash
    spack install automake@1.15 %gcc@8.3.0
    2.


    1. Code Block
      languagebash
      wget https://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
    3.


    1. Code Block
      languagebash
      tar -xf automake-1.15.tar.gz
    4.


    1. Code Block
      languagebash
      cd automake-1.15
    5.

    1. In this tutorial directory path is "~/public/switm/automake/1.15"

      Code Block
      languagebash
      # ./configure --prefix=<directory_path>
      ./configure --prefix=~/public/switm/automake/1.15
    6.


    1. Code Block
      languagebash
      make



    2. Code Block
      languagebash
      make
    7.
    1.  install



    Code Block
    languagebash
    makespack install automake@1.15 %gcc@8.3.0










  • Cmake v.3.20.6

    Lp.Normal wayUsing Spack
    1.


    Code Block
    languagebash
    cd ~/public/temp



    Code Block
    languagebash
    spack install cmake@3.20.6 %gcc@8.3.0


    2.


    Code Block
    languagebash
    wget https://github.com/Kitware/CMake/releases/download/v3.20.6/cmake-3.20.6.tar.gz








    3.


    Code Block
    languagebash
    tar -xf cmake-3.20.6.tar.gz


    4.


    Code Block
    languagebash
    cd cmake-3.20.6.tar.gz


    5.

    In this tutorial directory path is "~/public/switm/cmake/3.20.6"

    Code Block
    languagebash
    # ./configure --prefix=<directory_path>
    ./configure --prefix=~/public/switm/cmake/3.20.6


    6.


    Code Block
    languagebash
    make


    7.


    Code Block
    languagebash
    make install




  • Python v3.7.10

    Lp.Normal wayUsing Spack
    1.


    Code Block
    languagebash
    cd ~/public/temp



    Code Block
    languagebash
    spack install python@3.7.10


    2.


    Code Block
    languagebash
    wget https://www.python.org/ftp/python/3.7.10/Python-3.7.10.tgz








    3.


    Code Block
    languagebash
    tar -xf Python-3.7.10.tgz


    4.


    Code Block
    languagebash
    cd Python-3.7.10.tgz


    5.

    In this tutorial directory path is "~/public/switm/python/3.7.10"

    Code Block
    languagebash
    # ./configure --prefix=<directory_path>
    ./configure --prefix=~/public/switm/python/3.7.10


    6.


    Code Block
    languagebash
    make


    7.


    Code Block
    languagebash
    make install




  • Cython 0.29.23

    Lp.Normal wayUsing Spack
    1.


    Code Block
    languagebash
    cd ~/public/temp



    Code Block
    languagebash
    spack install py-cython@0.29.23


    2.


    Code Block
    languagebash
    wget https://files.pythonhosted.org/packages/source/c/cython/Cython-0.29.23.tar.gz








    3.


    Code Block
    languagebash
    tar -xf Cython-0.29.23.tar.gz


    4.


    Code Block
    languagebash
    cd Cython-0.29.23.tar.gz


    5.

    In this tutorial directory path is "~/public/switm/cython/0.29.23"

    Code Block
    languagebash
    python setup.py install --prefix=~/public/switm/cython/0.29.23



  • Java Development Kit v1.8.0_111

...