|
| 1 | +# 1.1 Installation |
| 2 | + |
| 3 | +## Three ways to install Go |
| 4 | + |
| 5 | +There are many ways to configure the Go development environment on your computer, and you can choose whichever one you like. The three most common ways are as follows. |
| 6 | + |
| 7 | + |
| 8 | +- Official installation packages. |
| 9 | + - The Go team provides convenient installation packages in Windows, Linux, Mac and other operating systems. This is probably the easiest way to get started. |
| 10 | +- Install it yourself from source code. |
| 11 | + - Popular with developers who are familiar with Unix-like systems. |
| 12 | +- Using third-party tools. |
| 13 | + - There are many third-party tools and package managers for installing Go, like apt-get in Ubuntu and homebrew for Mac. |
| 14 | + |
| 15 | +In case you want to install more than one version of Go on a computer, you should take a look at a tool called [GVM](https://github.com/moovweb/gvm). It is the best tool I've seen so far for accomplishing this task, otherwise you'd have to deal with it yourself. |
| 16 | + |
| 17 | +## Install from source code |
| 18 | + |
| 19 | +Because some parts of Go are written in Plan 9 C and AT&T assembler, you have to install a C compiler before taking the next step. |
| 20 | + |
| 21 | +On a Mac, if you have installed Xcode, you already have the compiler. |
| 22 | + |
| 23 | +On Unix-like systems, you need to install gcc or a similar compiler. For example, using the package manager apt-get (included with Ubuntu), one can install the required compilers as follows: |
| 24 | + |
| 25 | + `sudo apt-get install gcc libc6-dev` |
| 26 | + |
| 27 | +On Windows, you need to install MinGW in order to install gcc. Don't forget to configure your environment variables after the installation has completed.( ***Everything that looks like this means it's commented by a translator: If you are using 64-bit Windows, you should install the 64-bit version of MinGW*** ) |
| 28 | + |
| 29 | +At this point, execute the following commands to clone the Go source code and compile it.( ***It will clone the source code to your current directory. Switch your work path before you continue. This may take some time.*** ) |
| 30 | + |
| 31 | + git clone https://go.googlesource.com/go |
| 32 | + cd go/src |
| 33 | + ./all.bash |
| 34 | + |
| 35 | +A successful installation will end with the message "ALL TESTS PASSED." |
| 36 | + |
| 37 | +On Windows, you can achieve the same by running `all.bat`. |
| 38 | + |
| 39 | +If you are using Windows, the installation package will set your environment variables automatically. In Unix-like systems, you need to set these variables manually as follows. ( ***If your Go version is greater than 1.0, you don't have to set $GOBIN, and it will automatically be related to your $GOROOT/bin, which we will talk about in the next section***) |
| 40 | + |
| 41 | + export GOROOT=$HOME/go |
| 42 | + export GOBIN=$GOROOT/bin |
| 43 | + export PATH=$PATH:$GOROOT/bin |
| 44 | + |
| 45 | +If you see the following information on your screen, you're all set. |
| 46 | + |
| 47 | + |
| 48 | + |
| 49 | +Figure 1.1 Information after installing from source code |
| 50 | + |
| 51 | +Once you see the usage information of Go, it means you have successfully installed Go on your computer. If it says "no such command", check that your $PATH environment variable contains the installation path of Go. |
| 52 | + |
| 53 | +## Using the standard installation packages |
| 54 | + |
| 55 | +Go has one-click installation packages for every supported operating system. These packages will install Go in `/usr/local/go` (`c:\Go` in Windows) by default. Of course this can be modified, but you also need to change all the environment variables manually as I've shown above. |
| 56 | + |
| 57 | +### How to check if your operating system is 32-bit or 64-bit? |
| 58 | + |
| 59 | +Our next step depends on your operating system type, so we have to check it before we download the standard installation packages. |
| 60 | + |
| 61 | +If you are using Windows, press `Win+R` and then run the command tool. Type the `systeminfo` command and it will show you some useful system information. Find the line that says "system type" -if you see "x64-based PC" that means your operating system is 64-bit, 32-bit otherwise. |
| 62 | + |
| 63 | +I strongly recommend downloading the 64-bit package if you are a Mac user, as Go no longer supports pure 32-bit processors on Mac OSX. |
| 64 | + |
| 65 | +Linux users can type `uname -a` in the terminal to see system information. |
| 66 | +A 64-bit operating system will show the following: |
| 67 | + |
| 68 | + <some description> x86_64 x86_64 x86_64 GNU/Linux |
| 69 | + // some machines such as Ubuntu 10.04 will show as following |
| 70 | + x86_64 GNU/Linux |
| 71 | + |
| 72 | +32-bit operating systems instead show: |
| 73 | + |
| 74 | + <some description> i686 i686 i386 GNU/Linux |
| 75 | + |
| 76 | +### Mac |
| 77 | + |
| 78 | +Go to the [download page](https://golang.org/dl/), choose `go1.4.2.darwin-386.pkg` for 32-bit systems and `go1.4.2.darwin-amd64.pkg` for 64-bit systems. Going all the way to the end by clicking "next", `~/go/bin` will be added to your system's $PATH after you finish the installation. Now open the terminal and type `go`. You should see the same output shown in igure 1.1. |
| 79 | + |
| 80 | +### Linux |
| 81 | + |
| 82 | +Go to the [download page](https://golang.org/dl/), choose `go1.4.2.linux-386.tar.gz` for 32-bit systems and `go1.4.2.linux-amd64.tar.gz` for 64-bit systems. Suppose you want to install Go in the `$GO_INSTALL_DIR` path. Uncompress the `tar.gz` to your chosen path using the command `tar zxvf go1.4.2.linux-amd64.tar.gz -C $GO_INSTALL_DIR`. Then set your $PATH with the following: `export PATH=$PATH:$GO_INSTALL_DIR/go/bin`. Now just open the terminal and type `go`. You should now see the same output displayed in figure 1.1. |
| 83 | + |
| 84 | +### Windows |
| 85 | + |
| 86 | +Go to the [download page](https://golang.org/dl/), choose `go1.4.2.windows-386.msi` for 32-bit systems and `go1.4.2.windows-amd64.msi` for 64-bit systems. Going all the way to the end by clicking "next", `c:/go/bin` will be added to `path`. Now just open a command line window and type `go`. You should now see the same output displayed in figure 1.1. |
| 87 | + |
| 88 | +## Use third-party tools |
| 89 | + |
| 90 | +### GVM |
| 91 | + |
| 92 | +GVM is a Go multi-version control tool developed by a third-party, like rvm for ruby. It's quite easy to use. Install gvm by typing the following commands in your terminal: |
| 93 | + |
| 94 | + bash < <(curl -s -S -L https://raw.github.com/moovweb/gvm/master/binscripts/gvm-installer) |
| 95 | + |
| 96 | +Then we install Go using the following commands: |
| 97 | + |
| 98 | + gvm install go1.4.2 |
| 99 | + gvm use go1.4.2 |
| 100 | + |
| 101 | +After the process has finished, you're all set. |
| 102 | + |
| 103 | +### apt-get |
| 104 | + |
| 105 | +Ubuntu is the most popular desktop release version of Linux. It uses `apt-get` to manage packages. We can install Go using the following commands. |
| 106 | + |
| 107 | + sudo add-apt-repository ppa:gophers/go |
| 108 | + sudo apt-get update |
| 109 | + sudo apt-get install golang-stable |
| 110 | + |
| 111 | +### Homebrew |
| 112 | + |
| 113 | +Homebrew is a software management tool commonly used in Mac to manage packages. Just type the following commands to install Go. |
| 114 | + |
| 115 | + brew install go |
| 116 | + |
| 117 | +## Links |
| 118 | + |
| 119 | +- [Directory](preface.md) |
| 120 | +- Previous section: [Go environment configuration](01.0.md) |
| 121 | +- Next section: [$GOPATH and workspace](01.2.md) |
0 commit comments