RACKET 8.16

Basic information

Tested on (Requirements)

  • OS base: Rocky Linux 8.5 (x86_64) \(\boldsymbol{\ge}\) 8

  • Compiler GCC 8.5.0

Installation

  1. 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_racket

    $ mkdir build_racket
    
  2. Then, we need to download the source code of Racket. We can do this by using the wget command to download the installer script from the official website

    $ wget https://download.racket-lang.org/releases/8.16/installers/racket-8.16-x86_64-linux-cs.sh
    
  3. Then, we can execute the installer script to install Racket and follow the prompts to complete the installation, specifying the installation directory as ~/build_racket

    $ sh racket-8.16-x86_64-linux-cs.sh
    
  4. Finally, we can add racket to our PATH environment variable

    $ export PATH=$PATH:~/build_racket/bin
    

Author

  • Juan Manuel Gomez Piedrahita