Deepin 설치 Golang
918 단어 deepin
Go 설치 패키지 다운로드 go1.12.7.linux-amd64.tar.gz
2. 설치 해제 Go
tar zxvf go1.12.7.linux-amd64.tar.gz
압축을 풀고 생성된 go 폴더를/usr/local/디렉터리로 이동
sudo cp -r go /usr/local/go
3. Go 환경 변수 구성
sudo vim /etc/profile
Go 환경 변수 구성은 다음과 같습니다.
# GOROOT: GO
export GOROOT=/usr/local/go
# GOPATH: GO , GoEnv ,GoEnv src、pkg、bin
export GOPATH=/home/code/GoEnv
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
4. 환경 변수 새로 고침
source ~/.profile
5. 테스트
go env
6. Hello World
/home/code/GoEnv/src에서 hello를 만듭니다.go 파일
package main
import "fmt"
func main(){
fmt.Printf("hello world
")
}
현재 터미널에서 Hello를 실행합니다.go 파일 출력 Hello World
go run hello.go