Created
July 28, 2020 21:31
-
-
Save fed135/4c842f70e28ba1ec4edd24c984f028da to your computer and use it in GitHub Desktop.
Installing GVM and Go on Debian-based linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Go setup: | |
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer) | |
source ~/.gvm/scripts/gvm | |
sudo apt-get install bison -y | |
gvm install go1.14 -B | |
gvm use go1.14 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment