Notice
Recent Posts
Recent Comments
Link
devops
Ubuntu(우분투) Golang 최신 버전 설치 and Command not found 해결방법 본문
반응형
Golang 최신버전 설치 방법
$ wget https://dl.google.com/go/go<버전>.linux-amd64.tar.gz
<버전>에 들어갈 최신버전은 다음 링크에서 확인한다. https://golang.org/dl/
$ sudo tar -C /usr/local -xzf go<버전>.linux-amd64.tar.gz
다운받은 압축파일을 /usr/local에 푼다.
$ export PATH=$PATH:/usr/local/go/bin
환경 변수를 지정한다.
$ source ~/.profile
Go command not found가 발생할 때 해결 방법
$ sudo nano /etc/sudoers
secure_path=" 어쩌구 저쩌구" 여기에 :/usr/local/go/bin 패키지 경로 추가
ctrl + x, y 누르고 종료
반응형
'DevOps > OS' 카테고리의 다른 글
리눅스(Linux) 환경변수 PATH? 환경변수 설정 방법 (0) | 2021.08.26 |
---|---|
shell과 bash의 간단한 개념 정리 (0) | 2021.08.26 |
Ubuntu 시스템 모니터링 도구 (0) | 2021.08.25 |
Linux 개발환경 (Python, docker) 구축하기 (0) | 2021.08.25 |
error: could not lock config 오류 해결방법 (0) | 2021.08.25 |
Comments