-
RaspberryPi로 Golang 서버만들기 - go설치하기 [2]Go 2021. 1. 3. 00:35728x90반응형
1. RaspberryPi 접속
ssh pi@192.168.0.100
라즈베리파이에 접속한다.
sudo su cd
관리자 권한으로 변경한뒤 home으로 이동한다.
wget https://golang.org/dl/go1.15.6.linux-armv6l.tar.gz
go를 설치한다. 공식홈페이지 참조[https://golang.org/dl/]
tar -xvzf go1.15.6.linux-armv6l.tar.gz
압축풀기
vi ~/.bashrc
#제일 밑에 추가 export PATH=$PATH:/root/go/bin
환경변수 설정을 한다. (어디서나 go 명령어를 사용하기위해)
go 설치 완료
728x90반응형'Go' 카테고리의 다른 글
RaspberryPi로 Golang 서버만들기 - MariaDB 설치하기 [6] (0) 2021.01.03 RaspberryPi로 Golang 서버만들기 - Postman [5] (0) 2021.01.03 RaspberryPi로 Golang 서버만들기 - Echo Framework [4] (0) 2021.01.03 RaspberryPi로 Golang 서버만들기 - visual code ssh 연결하기 [3] (0) 2021.01.03 RaspberryPi로 Golang 서버만들기 - OS 설치하기 [1] (6) 2021.01.02