0
0

More than 1 year has passed since last update.

Raspberry Pi 4 64BitにGoをインストールする

Last updated at Posted at 2023-07-08

はじめに

ラズパイでGoを動かしたくていろいろググったのですが、つまづきまくったので記事にしました

コマンド

$ wget https://golang.org/dl/go1.20.5.linux-arm64.tar.gz
$ sudo tar -C /usr/local -xzf go1.20.5.linux-arm64.tar.gz
$ echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc
$ echo 'export PATH=$HOME/go/bin:$PATH' >> ~/.bashrc
$ source ~/.bashrc
$ go version
go version go1.20.5 linux/arm

arm64にするのがポイントです

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0