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

##GOPATHの確認

$ go env GOPATH
/Users/project/to/path/go

##環境情報を一覧表示

$ printenv
TERM_SESSION_ID=w0t0p0:F236B887-2A99-432B-89EA-01570DC27639
SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.q3WJE4aYYO/Listeners
LC_TERMINAL_VERSION=3.3.12
COLORFGBG=7;0
ITERM_PROFILE=Default
XPC_FLAGS=0x0
LANG=ja_JP.UTF-8
etc

##GOPATHの指定

ホームディレクトリに移動
$ cd ~
ファイルの詳細情報の表示
$ ls -la
-rw-------    1 user  staff   7131  7  2 18:43 .bash_profile
-rw-r--r--    1 user  staff    206  8 24 21:07 .bashrc

####.bash_profileか.bashrcにGOPATHを追記(どちらかで良い)
※どっちも書くとPATHが通らなくなる

$ vi .bash_profile
$ vi .bashrc

####sourceコマンドの実行
これで記述したPATHを通す。

source ~/.bashrc
source ~/.bash_profile
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?