0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【メモ】Golang のインストールと設定

Last updated at Posted at 2024-12-30

メモ

ubuntu/debian の apt とかでは古いじゃないか、というときに、割と簡単に手動インストールする方法。

ダウンロード

wget -c https://go.dev/dl/go1.23.4.linux-amd64.tar.gz

(参考)

インストール

sudo tar -C /usr/local/ -xzf go1.23.4.linux-amd64.tar.gz

設定(パスを通す)

sudo vi /etc/profile.d/apps-bin-path.sh 

...
...(以下を追記)

# set PATH so it includes /usr/local/go/bin if it exists
if [ -d "/usr/local/go/bin" ] ; then
    PATH="/usr/local/go/bin:$PATH"
fi

確認

コマンドのありか

which go

(応答)

/usr/local/go/bin/go

バージョン

go version

(応答)

go version go1.23.4 linux/amd64

その他

開発プロジェクトとして新しいディレクトリを作る場合、トップディレクトリに「go.mod」ファイルを作成してバージョン指定する方法もあるらしい。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?