blob: 85914587d122e92872dfd1357c170c264c67e462 [file] [log] [blame] [view]
jbd@fab88312017-01-06 17:17:16 -08001# Unix systems
jbd@bc4124e2017-01-05 23:28:35 -08002
jbd@c03fd472017-01-05 23:36:55 -08003`GOPATH` can be any directory on your system. In Unix examples, we will set it to `$HOME/work`. Note that `GOPATH` must not be the same path as your Go installation. Another common setup is to set GOPATH=$HOME.
jbd@bc4124e2017-01-05 23:28:35 -08004
jbd@fab88312017-01-06 17:17:16 -08005## Bash
jbd@bc4124e2017-01-05 23:28:35 -08006
7Edit your `.bash_profile` to add the following line:
8```bash
9export GOPATH=$HOME/work
10```
11
jbd@164ffea2017-01-05 23:31:00 -080012Save and exit your editor. Then, source your `~/.bash_profile`.
jbd@bc4124e2017-01-05 23:28:35 -080013```bash
14$ source ~/.bash_profile
15```
16
jbd@fab88312017-01-06 17:17:16 -080017## Zsh
jbd@164ffea2017-01-05 23:31:00 -080018
19Edit `~/.zshrc` file to add the following line:
20
21```bash
22export GOPATH=$HOME/work
23```
24Save and exit your editor. Then, source your `~/.zshrc`.
25```bash
26$ source ~/.zshrc
27```
28
jbd@fab88312017-01-06 17:17:16 -080029# Windows
jbd@bc4124e2017-01-05 23:28:35 -080030
31Your workspace can be located wherever you like,
32but we'll use `C:\work` in this example.
jbd@c03fd472017-01-05 23:36:55 -080033Note that `GOPATH` must not be the same path as your Go installation.
jbd@bc4124e2017-01-05 23:28:35 -080034
35* Create folder at `C:\work`.
36* Right click on "Start" and click on "Control Panel". Select "System and Security", then click on "System".
37* From the menu on the left, select the "Advanced systems settings".
38* Click the "Environment Variables button at the bottom.
39* Click "New" from the "User variables" section.
40* Type `GOPATH` into the "Variable name" field.
41* Type `C:\work` into the "Variable value" field.
42* Click OK.
43
jbd@bc4124e2017-01-05 23:28:35 -080044