Install Golang in Kali and Set GOPATH
mkdir ~/.go
echo "GOPATH=$HOME/.go" >> ~/.bashrc
echo "export GOPATH" >> ~/.bashrc
echo "PATH=\$PATH:\$GOPATH/bin # Add GOPATH/bin to PATH for scripting" >> ~/.bashrc
source ~/.bashrcmkdir ~/.go
echo "GOPATH=$HOME/.go" >> ~/.zshrc
echo "export GOPATH" >> ~/.zshrc
echo "PATH=\$PATH:\$GOPATH/bin # Add GOPATH/bin to PATH for scripting" >> ~/.zshrc
source ~/.zshrc# Set up Go environment in fish shell
set -x GOPATH $HOME/.go
set -x PATH $PATH $GOPATH/binGithub ERROR Solution
git config --global --unset http.proxy
git config --global --unset https.proxyHTTPX
Favourite Colors:
Last updated