英文:
PowerPC version of Go
问题
我刚刚获得了一台强大的Minski IBM机器(Linux),打算在上面运行一些Go脚本。我已经尝试安装和使用了很多版本的Go语言,但是它们都无法正常工作。是否有一些特殊版本的Go语言适用于这台强大的计算机?
我已经尝试安装了大约4或5个不同的版本,但仍然遇到以下问题:
程序'go'当前未安装。要运行'go',请请求管理员安装'golang-go'软件包。
有人告诉我不需要管理员进行系统范围的安装,只需在我的机器上安装Go语言即可。
我一直在使用这个逐步安装Go语言的方法在这台机器上进行安装:
https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04
我在这台机器上没有root访问权限,只是提供信息。
编辑:
问题已解决
必须使用以下命令:
curl -O storage.googleapis.com/golang/go1.8.3.linux-ppc64le.tar.gz
英文:
I just got access to a powerful Minski IBM machine (Linux) and intend on running some go scripts on it. I have gone through a lot of the versions of golang and tried installing and using them on the machine but none of them seem to work. Is there some special version of GO that I need that is specially designed to work on this powerful computer.
I have now tried installing about 4 or 5 different versions but still keep getting:
The program 'go' is currently not installed. To run 'go' please ask your administrator to install the package 'golang-go'
I was told that there is no need for an administrator to do a system wide install and to just install golang on my machine.
I have been using this step-by-step to install GO on this machine:
https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04
I do not have root access on this machine, just FYI
EDIT:
Problem solved
Had to use:
curl -O storage.googleapis.com/golang/go1.8.3.linux-ppc64le.tar.gz
答案1
得分: 3
PowerPC架构:ppc64le(64位PowerPC小端)。例如,对于Go 1.8.3,
go1.8.3.linux-ppc64le.tar.gz:https://storage.googleapis.com/golang/go1.8.3.linux-ppc64le.tar.gz
英文:
PowerPC architecture: ppc64le (64-bit PowerPC little-endian). For example, for Go 1.8.3,
go1.8.3.linux-ppc64le.tar.gz: https://storage.googleapis.com/golang/go1.8.3.linux-ppc64le.tar.gz
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论