1
2

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.

Windows(WSL2)でとりあえずGo言語を書けるようにする

Last updated at Posted at 2022-12-21

はじめに

とりあえずGo言語を書く環境を用意したかったのでやったことのメモ。

前提

WindowsにWSL2インストール済
WindowsにVisual Stuidio Codeインストール済
WSL2にUbuntu 20.04.5 LTSインストール済
UbuntuにVisual Studio Codeインストール済

UbuntuにGo言語をインストールする

このページのUsin PPAの通りにコマンドを打つ(これで最新版が入る)。

sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go

VSCodeにGoの拡張機能をインストールする

"Go"で検索すると出てくるこれをインストールする。
2022-12-21 (14).png

適当なディレクトリにgoファイル作成する

touch hello.go
code hello.go

package main

import "fmt"

func main() {
	fmt.Println("はろーわーるど")
}

go run hello.go

結果
2022-12-21 (15).png

おわりに

数年前までWindowsに環境構築するの面倒なイメージあったけど動かすだけの環境を用意するのは思ったより簡単にできて拍子抜けした。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?