jbd@ | fab8831 | 2017-01-06 17:17:16 -0800 | [diff] [blame^] | 1 | # Unix systems |
jbd@ | bc4124e | 2017-01-05 23:28:35 -0800 | [diff] [blame] | 2 | |
jbd@ | c03fd47 | 2017-01-05 23:36:55 -0800 | [diff] [blame] | 3 | `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@ | bc4124e | 2017-01-05 23:28:35 -0800 | [diff] [blame] | 4 | |
jbd@ | fab8831 | 2017-01-06 17:17:16 -0800 | [diff] [blame^] | 5 | ## Bash |
jbd@ | bc4124e | 2017-01-05 23:28:35 -0800 | [diff] [blame] | 6 | |
| 7 | Edit your `.bash_profile` to add the following line: |
| 8 | ```bash |
| 9 | export GOPATH=$HOME/work |
| 10 | ``` |
| 11 | |
jbd@ | 164ffea | 2017-01-05 23:31:00 -0800 | [diff] [blame] | 12 | Save and exit your editor. Then, source your `~/.bash_profile`. |
jbd@ | bc4124e | 2017-01-05 23:28:35 -0800 | [diff] [blame] | 13 | ```bash |
| 14 | $ source ~/.bash_profile |
| 15 | ``` |
| 16 | |
jbd@ | fab8831 | 2017-01-06 17:17:16 -0800 | [diff] [blame^] | 17 | ## Zsh |
jbd@ | 164ffea | 2017-01-05 23:31:00 -0800 | [diff] [blame] | 18 | |
| 19 | Edit `~/.zshrc` file to add the following line: |
| 20 | |
| 21 | ```bash |
| 22 | export GOPATH=$HOME/work |
| 23 | ``` |
| 24 | Save and exit your editor. Then, source your `~/.zshrc`. |
| 25 | ```bash |
| 26 | $ source ~/.zshrc |
| 27 | ``` |
| 28 | |
jbd@ | fab8831 | 2017-01-06 17:17:16 -0800 | [diff] [blame^] | 29 | # Windows |
jbd@ | bc4124e | 2017-01-05 23:28:35 -0800 | [diff] [blame] | 30 | |
| 31 | Your workspace can be located wherever you like, |
| 32 | but we'll use `C:\work` in this example. |
jbd@ | c03fd47 | 2017-01-05 23:36:55 -0800 | [diff] [blame] | 33 | Note that `GOPATH` must not be the same path as your Go installation. |
jbd@ | bc4124e | 2017-01-05 23:28:35 -0800 | [diff] [blame] | 34 | |
| 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@ | bc4124e | 2017-01-05 23:28:35 -0800 | [diff] [blame] | 44 | |