1
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?

More than 1 year has passed since last update.

M2 MacでGolangをインストールする。

Posted at

はじめに

表題通り、M2のMacでGolangをインストールします。HelloWorldが出るまでを確認する記事です。

環境構築

リンクより、Golangのインストーラをダウンロードする。
スクリーンショット 2022-08-10 19.04.46.png

スクリーンショット 2022-08-10 19.05.32.png
→Apple MacOS(ARM64)をダウンロードする。

インストーラーでインストールする。

インストールの確認
~$ go version
go version go1.19 darwin/arm64
GoのPathを通す
vi ~/.zshrc ← zshrcを開く
#go言語
export GOPATH=$HOME/go 
export PATH=$GOPATH/bin:$PATH
Goのディレクトリを作成する
~$ mkdir go
~$ cd go 
~/go$ mkdir src
~/go$ mkdir bin

~/go$ ls
bin	src

サンプルプログラムを実行する

go.modを作成する
~/go/src$ go mod init hello

※注意:GoPath配下のsrc内で実行してください!!

サンプルプログラムを作成する
package main

import "fmt"

func main(){
    fmt.Println("HelloWorld!! Golang!!!")
}
サンプルプログラムを実行する
~/go/src$ go run hello.go 
HelloWorld!! Golang!!!

はい、完成!!!

1
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
1
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?