"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")
이 명령은 "Path" 환경 변수의 현재 값을 검색합니다. 그런 다음 값에 Go 설치 디렉터리 경로를 추가합니다. 예를 들어 Go가 "C:Go"에 설치된 경우 다음 명령을 사용합니다.
$env:Path += ";C:\Go\bin"
마지막으로 다음을 실행하여 변경 사항을 저장합니다.
[System.Environment]::SetEnvironmentVariable("Path", $env:Path, "Machine")
이 단계를 완료한 후, 터미널을 다시 시작하고 "go run main.go"를 다시 실행해 보세요. 오류가 해결되어야 합니다.
위 내용은 왜 \'go run main.go\'를 실행할 수 없나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!