- Disclaimer!!
- __ 👨💻 👩💻 In development 🚧 🛠 __
- This repo must and will suffer some major updates and modifications along with my learning curve
- Feel totally free to fork and PR this repo
- Enjoy!
- A special thanks to Ellen Körbes, for bringing an amazing GOLang content to Brazil in PT-BR
- >>Introduction<<
- Variables and Types
- Programming Foundations I
- Data Structures I
- Programming Foundations II
- Data Structures II
- Concurrency
- Packages
- Projects
- Download package from the Official Download Page
- In my case the filename is "go1.15.2.linux-amd64.tar.gz"
- Open your terminal, and follow these steps
-
$ mkdir ~/go
-
$ sudo mv ~/Downloads/go1.15.2.linux-amd64.tar.gz ~/go
-
$ cd ~/go
-
$ sudo tar -C /usr/local -xzf go1.15.2.linux-amd64.tar.gz
- Copy these:
-
export GOPATH=$HOME/go export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
-
- Profile installation
- Paste Here
-
$ sudo nano ~/.profile
-
$ /bin/bash -c ‘source ~/.profile'
-
- Paste Here
- System-wide installation
-
$ sudo nano /etc/profile
-
$ /bin/bash -c ‘source /etc/profile’
-
- Re-open your terminal
- Test with:
$ go version