프로그래밍 공부하기

Command 'go' not found, but can be installed with: 본문

ErrorLog

Command 'go' not found, but can be installed with:

ihl 2021. 3. 13. 13:01
Command 'go' not found, but can be installed with:

  어제 go를 설치하고 코딩을 하다가 오늘 다시 go 파일을 실행하려니 위와 같이 go라는 명령을 찾을 수 없다는 오류가 발생하였다. 이럴 때 다음과 같은 과정으로 문제를 해결할 수 있었다.

 

1.  먼저 환경변수를 다시 지정해준다.

export PATH=$PATH:/usr/local/go/bin

 

2.  재지정된 환경변수를 바로 적용한다.

source $HOME/.profile

 

'ErrorLog' 카테고리의 다른 글

[PowerShell] UnauthorizedAccess  (0) 2021.05.14
ELB 502 Error  (3) 2021.04.30
ELB 503 Error  (0) 2021.04.27
배포했는데 웹소켓이 안 됨  (0) 2021.04.27
[VMware] Ubuntu 네트워크 아이콘이 사라졌을 때  (0) 2021.04.20
Comments