Golang bytes
# Linux Content
# Download the Go binary archive
wget https://golang.org/dl/go1.17.4.linux-amd64.tar.gz
# Extract the archive
sudo tar -C /usr/local -xzf go1.17.4.linux-amd64.tar.gz
# Add Go binary path to environment variable
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc
source ~/.bashrc
Download binary from https://go.dev/dl/
flowchart LR A -->|Getting Started| B(Practice) B --> C{Practiced enough} C -->|False| D[Beginner Level] C -->|True| E(Intermediate Level) E --> F{Loop Practice} F -->|Yes| G[Advanced Level] F -->|No| H[Advanced Level 2]