2
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 3 years have passed since last update.

「Goプログラミング実践入門」サンプル実行エラー解消方法

Posted at

Go初学者です。
「Goプログラミング実践入門」に載っているサンプルプログラムを実行しようとした時に発生したエラーと、その解決方法です。

環境

  • macOS Catalina 10.15.6
  • Go 1.15

事象

$ go install first_webapp
package first_webapp is not in GOROOT (/usr/local/go/src/first_webapp)

解決方法

次のコマンドを実行してから、上記のコマンドを再実行。

$ go mod init first_webapp
go: creating new go.mod: module first_webapp

Goのバージョンアップにより、「Go Modules」というものが使われるようになったためのようです。
詳しくは次の記事などを参照してください。
「Go Modules」

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