Last active
April 19, 2024 12:06
-
-
Save fedir/c1e2531a5add831864939589b7cee6e7 to your computer and use it in GitHub Desktop.
Revisions
-
fedir revised this gist
Jan 4, 2019 . 2 changed files with 11 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ export GOROOT=/usr/local/go export PATH=${GOROOT}/bin:${PATH} export GOPATH=$HOME/go export PATH=${GOPATH}/bin:${PATH} This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,4 +3,12 @@ 1. rm -rf /usr/local/go/ 2. Download iOS installer 3. Install 4. Add path variables into Your .profile # On Linux Mint, Ubuntu, Debian GOVER="1.11.4" GOOS="linux" GOARCH="amd64" wget https://dl.google.com/go/go${GOVER}.${GOOS}-${GOARCH}.tar.gz tar -C /usr/local -xzf go${GOVER}.${GOOS}-${GOARCH}.tar.gz -
fedir revised this gist
Jan 27, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # On macOS 1. rm -rf /usr/local/go/ 2. Download iOS installer 3. Install 4. Add path variables into Your .profile -
fedir revised this gist
Jan 27, 2018 . No changes.There are no files selected for viewing
-
fedir revised this gist
Jan 27, 2018 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ # On iOS 1. rm -rf /usr/local/bin/ 2. Download iOS installer 3. Install 4. Add path variables into Your .profile -
fedir revised this gist
Jan 27, 2018 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ export GOPATH=$HOME/go export PATH=${GOPATH}/bin:${PATH} export GOROOT=/usr/local/go -
fedir revised this gist
Jan 27, 2018 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ mkdir $HOME/go export GOPATH=$HOME/go export PATH=${GOPATH}/bin:${PATH} export GOROOT=/usr/local/go export PATH=${GOROOT}/bin:${PATH} -
fedir revised this gist
Jan 27, 2018 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,4 @@ export GOPATH=$HOME/go export GOROOT=/usr/local/go export PATH=${GOROOT}/bin:${PATH} export PATH=${GOPATH}/bin:${PATH} -
fedir revised this gist
Jan 5, 2018 . No changes.There are no files selected for viewing
-
fedir renamed this gist
Jan 4, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
fedir created this gist
Jan 4, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ export GOROOT=/usr/local/go export PATH=${GOROOT}/bin:${PATH} #export GOPATH=${HOME}/other_src/gopath # typical value change at will export GOPATH=$HOME/go export PATH=${GOPATH}/bin:${PATH}