오류: 'go' 명령이 인식되지 않습니다
"go run main.go" 명령을 실행한 후 다음 오류가 발생합니다.
go : The term 'go' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
해결 방법
이 오류를 해결하려면 Go 실행 파일의 경로를 시스템 환경 변수에 추가해야 합니다. 방법은 다음과 같습니다.
$env:Path = [System.Environment]::GetEnvironmentVariable("Path", "Machine")
이렇게 하면 현재 경로 변수가 검색됩니다. .
;C:\Go\bin
세미콜론(;)은 새 경로와 기존 경로를 구분합니다.
$env:Path = $env:Path + ";C:\Go\bin"
"C:Gobin"을 올바른 Go 설치 경로로 바꿔야 할 수도 있습니다.
이제 오류 없이 "go run main.go" 명령을 실행할 수 있습니다. .
위 내용은 내 터미널에서 \'go\' 명령이 인식되지 않는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!