5
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.

$GOPATH/go.mod exists but should not

Posted at

##事象
goファイルを実行する

go run xxx.go

以下のエラーが出てきた。

$GOPATH/go.mod exists but should not

##原因
$GOPATHで指定されているディレクトリ配下にxxx.modがあることが原因。
mvコマンドで適当な場所にこのファイルを移動しましょう。
因みにxxx.modファイルはgoモジュールを管理してくれるファイルです。

#カレントディレクトリにgo.modファイルを移動。
mv $GOPATH/go.mod ./
5
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
5
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?