Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- go
- mutex
- 영화
- FOR
- Linux
- go언어
- GO 언어
- Sync
- Python
- range
- tcp
- File
- API
- package
- 리뷰
- Golang
- write
- window
- http
- Callback
- windows
- 책
- C
- Close
- bitcoin
- channel
- json
- c++
- JavaScript
- install
Archives
- Today
- Total
목록tar (1)
Code Habit
Go 언어 설치 -> CentOS ( Linux )
Linux (CentOS)에 Go 언어 설치하는 방법을 정리해보겠다. 먼저 wget으로 Go 언어 패키지를 다운 받는다. 다운로드 페이지는 아래 링크에서 확인할 수 있다. - 링크 : Https://golang.org/dl/ 현재 버전은 1.14.2이다. $ wget https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz /usr/local에 압축을 풀어준다. $ sudo tar. -C /usr/local -xzf go1.14.2.linux-amd64.tar.gz Export 명령으로 환경변수를 설정한다. $ export PATH=$PATH:/usr/local/go/bin Source 명령으로 설정을 등록한다. $ source ~/.bash_profile 이제 어디..
카테고리 없음
2020. 4. 28. 13:18