Install Racket on your system, and uninstall it too. Follow the instructions below while you watch the video!
# Racket
– Dynamic Language
– Lexically scoped
– Binding
# Installation
– Download Racket:
– – Gives you DrRacket IDE, some Racket mnodules, libraries, packages
– **racket**, the core compiler, interpreter, and run-time system
– **DrRacket**, the programming environment;
– **raco**, a command-line tool for executing Racket commands that install packages, build libraries, and more.
## Linux Install
– Download the .sh file from racket:
– – Default installation (NON DISTRIBUTED INSTALL)
– – Install into ~/racket (Option 3)
### ADD racket and raco to terminal
– `nano ~/.bashrc`
– `export PATH=”/path/to/racket/bin:$PATH”`
– `source ~/.bashrc`
### Linux Uninstall
– OPTION: FIND ALL FILES RELATED TO RACKET `find / -iname “racket*” 2{angleBracketRightPointing}/dev/null`
– – Search starts in `/` then `2{angleBracketRightPointing}/dev/null` part suppresses any error messages
– – then just delete all the files listed
– DEFAULT INSTALLATION IS CONTAINED IN RACKET FOLDER
– – DISTRIBUTED INSTALLATION INCLUDES AN UNINSTALL FILE THAT MUST BE SAVED
– – Delete reference in ~/.bashrc
– – Delete main folder
– – delete racket file in config `USER/.config$ rm -rf racket`
## Windows Install
– DOWNLOAD EXE from racket:
– run exe
– ADD racket `ProgramFiles/Racket`
### Windows Uninstall
– run install
– remove paths
[ad_2]
source