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

GOPATHについてメモ

Posted at

Goの環境構築をしていてGOPATHについて結理解するのに時間がかかったのでまとめ
他の言語と全然違って戸惑い😿

#GOPATHとは

GOPATHは、ワークスペースのルートのこと
ソースコードとかパッケージとかコンパイルした後の実行ファイルを全部ぶちこむ🌵

デフォルトは $HOME/goで、Goのインストールディレクトリじゃなければどこでもいい。

※みた感じデフォルトのまま使っている人が多そう。

#フォルダ構成

例えばGOPATHを$HOME/goにしたときのフォルダ構成はこんな感じ

  go
   ├── src
   ├── pkg
   └── bin

##src
ソースコードを置くディレクトリ。一ディレクトリ一アプリケーションが基本。
packageがmainであれば実行可能アプリケーション、違ったらアプリケーションパッケージ

##pkg
アプリケーションパッケージが保存される

##bin
実行ファイルが保存される。

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