Skip to content

Instantly share code, notes, and snippets.

@anjmao
Created December 12, 2020 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anjmao/14ea0567622e78f557257427a5b24e32 to your computer and use it in GitHub Desktop.
Save anjmao/14ea0567622e78f557257427a5b24e32 to your computer and use it in GitHub Desktop.
Linux Go Install
#!/bin/bash
set -e
wget https://golang.org/dl/go1.15.6.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.15.6.linux-amd64.tar.gz
echo 'export PATH=$PATH:/usr/local/go/bin' >> $HOME/.profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment