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.

GO言語 インストール Windows10 

Last updated at Posted at 2022-03-24

自分のメモ代わりに

検証環境

OS:Windows 10 HOME
Visual Studio Code

Go言語のダウンロード

公式サイトへアクセスし、msiファイルをダウンロードする。
https://go.dev/dl/

インストーラーを開き、基本的に「Next」→ 「Next」→ と押していけば問題ありません。
※保存先については、あとでパスの設定で必要になる恐れがあるで、メモしておく。

インストールの確認

インストールが終了したら再起動をする。
再起動しないとパスが反映されない場合があるため。
※自分は反映されなかった。

再起動したら
コマンドプロンプトを起動してインストールした階層まで移動し以下を入力

go version

バージョンが表示されればOK。
※表示されない場合は環境変数を設定

プログラム作成

テキストエディタでプログラム作成し、任意のフォルダー内に置く。
コマンドプロンプトでgo run hello.goと入力し「Hello!」と表示されれば成功。

hello.go

package main

import (
    "fmt"
)


func main() {
    fmt.Println("Hello, World!")
}

Visual Studio CodeでGO拡張機能のインストール

マーケットプレイスの検索窓に「GO」と入力して「Go for Visual Studio Code」でインストールします。

スクリーンショット 2022-03-24 215128.png

Ctrl + Shift + P キーを同時に押下して、検索窓より「Go:Install/Update Tools」をインストール。

image.png

スクリーンショット 2022-03-24 215655.png

「All tools successfully installed.」と表示されれば完了

Go言語のソースを実行

作成したプロジェクトをVSCodeで動かして連結を確認
※F5キーで実行できます。

エラーがでたら、以下のコマンドを入力

go mod init

駄目だった場合は

go mod init github.com/castaneai/gomodtest

参考サイト

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?