Skip to content

Commit 5504747

Browse files
Start translation to brazilian portuguese
1 parent 3219cc6 commit 5504747

File tree

273 files changed

+16240
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+16240
-0
lines changed

LANGS.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
* [French](fr/)
33
* [中文](zh/)
44
* [日本語](ja/)
5+
* [Português - Brasil](pt-br/)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* [中文](zh/)
66
* [日本語](ja/)
77
* [Turkish](tr/)
8+
* [Português - Brasil](pt-br/)
89

910
# Donate
1011

pt-br/01.0.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# 1 Configuração do ambiente de desenvolvimento
2+
3+
Seja bem vindo ao mundo Go, vamos começar a explorar!
4+
5+
Go é uma linguagem compilada rápida incluindo coletor de lixo e multiplataforma. Veja abaixo algumas vantagens de utiliza-la:
6+
7+
- Compilação rápida em projetos de todos os portes.
8+
- Mantém um modelo padrão no desenvolvimento de software, sendo assim evitando futuros problemas associados ao estilo C de desenvolvimento.
9+
- É estática, não tem niveis no seu sistema de tipo, então não precisaremos gastar tempo trabalhando com a relação de tipos de variaveis. É bem leve e orientada a objetos.
10+
- Realiza a coleta de lixo. Isso melhora o desempenho e a comunicação com diversos sistemas operacionais;
11+
- Foi desenvida para todas as plataformas.
12+
13+
Go é uma linguagem compilada. Combina a eficiência de desenvolvimento das linguagens interpretadas e dinâmicas por sua segurança em tipos estáticos. É uma ótima escolha por ser multi-plataforma e moderna. Por um tempo não haviam pacotes e ferramentas de terceiros para resolver problemas comuns e tudo tinha que ser feito e refeito, como reconstruir a roda, por isso nasceu o interesse na linguagem.
14+
15+
Nesse capitulo, vamos aprender a instalar e configurar nosso próprio ambiente de desenvolviment.
16+
17+
## Links
18+
19+
- [Directory](preface.md)
20+
- Próxima sessão: [Instalação](01.1.md)

pt-br/01.1.md

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
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+
![](images/1.1.mac.png?raw=true)
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)

pt-br/01.2.md

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
#1.2 $GOPATH and workspace
2+
3+
## $GOPATH
4+
5+
Go commands all rely on one important environment variable called $GOPATH. Notice that this is not the $GOROOT variable where Go is installed. This variable points to the workspace of Go on your computer (I use this path on my computer; if you don't have the same directory structure, please replace by yourself).
6+
7+
In Unix-like systems, the variable should be used like this:
8+
9+
export GOPATH=/home/apple/mygo
10+
11+
In Windows, you need to create a new environment variable called GOPATH, then set its value to `c:\mygo`( ***This value depends on where your workspace is located*** )
12+
13+
It's OK to have more than one path (workspace) in $GOPATH, but remember that you have to use `:`(`;` in Windows) to break them up. At this point, `go get` will save the content to your first path in $GOPATH.
14+
15+
In $GOPATH, you must have three folders as follows.
16+
17+
- `src` for source files whose suffix is .go, .c, .g, .s.
18+
- `pkg` for compiled files whose suffix is .a.
19+
- `bin` for executable files
20+
21+
In this book, I use `mygo` as my only path in $GOPATH.
22+
23+
## Package directory
24+
25+
Create package source files and folders like `$GOPATH/src/mymath/sqrt.go` (`mymath` is the package name) ( ***Author uses `mymath` as his package name, and same name for the folder where contains package source files***)
26+
27+
Every time you create a package, you should create a new folder in the `src` directory. Folder names are usually the same as the package that you are going to use. You can have multi-level directories if you want to. For example, if you create the directory `$GOPATH/src/github.com/astaxie/beedb`, then the package path would be `github.com/astaxie/beedb`. The package name will be the last directory in your path, which is `beedb` in this case.
28+
29+
Execute following commands. ( ***Now author goes back to talk examples*** )
30+
31+
cd $GOPATH/src
32+
mkdir mymath
33+
34+
Create a new file called `sqrt.go`, type following content to your file.
35+
36+
// Source code of $GOPATH/src/mymath/sqrt.go
37+
package mymath
38+
39+
func Sqrt(x float64) float64 {
40+
z := 0.0
41+
for i := 0; i < 1000; i++ {
42+
z -= (z*z - x) / (2 * x)
43+
}
44+
return z
45+
}
46+
47+
Now my package directory has been created and its code has been written. I recommend that you use the same name for your packages as their corresponding directories, and that the directories contain all of the package source files.
48+
49+
## Compile packages
50+
51+
We've already created our package above, but how do we compile it for practical purposes? There are two ways to do this.
52+
53+
1. Switch your work path to the directory of your package, then execute the `go install` command.
54+
2. Execute the above command except with a file name, like `go install mymath`.
55+
56+
After compiling, we can open the following folder.
57+
58+
cd $GOPATH/pkg/${GOOS}_${GOARCH}
59+
// you can see the file was generated
60+
mymath.a
61+
62+
The file whose suffix is `.a` is the binary file of our package. How do we use it?
63+
64+
Obviously, we need to create a new application to use it.
65+
66+
Create a new application package called `mathapp`.
67+
68+
cd $GOPATH/src
69+
mkdir mathapp
70+
cd mathapp
71+
vim main.go
72+
73+
code
74+
75+
//$GOPATH/src/mathapp/main.go source code.
76+
package main
77+
78+
import (
79+
"mymath"
80+
"fmt"
81+
)
82+
83+
func main() {
84+
fmt.Printf("Hello, world. Sqrt(2) = %v\n", mymath.Sqrt(2))
85+
}
86+
87+
To compile this application, you need to switch to the application directory, which in this case is `$GOPATH/src/mathapp`, then execute the `go install` command. Now you should see an executable file called `mathapp` was generated in the directory `$GOPATH/bin/`. To run this program, use the `./mathapp` command. You should see the following content in your terminal.
88+
89+
Hello world. Sqrt(2) = 1.414213562373095
90+
91+
## Install remote packages
92+
93+
Go has a tool for installing remote packages, which is a command called `go get`. It supports most open source communities, including Github, Google Code, BitBucket, and Launchpad.
94+
95+
go get github.com/astaxie/beedb
96+
97+
You can use `go get -u …` to update your remote packages and it will automatically install all the dependent packages as well.
98+
99+
This tool will use different version control tools for different open source platforms. For example, `git` for Github and `hg` for Google Code. Therefore, you have to install these version control tools before you use `go get`.
100+
101+
After executing the above commands, the directory structure should look like following.
102+
103+
$GOPATH
104+
src
105+
|-github.com
106+
|-astaxie
107+
|-beedb
108+
pkg
109+
|--${GOOS}_${GOARCH}
110+
|-github.com
111+
|-astaxie
112+
|-beedb.a
113+
114+
Actually, `go get` clones source code to the $GOPATH/src of the local file system, then executes `go install`.
115+
116+
You can use remote packages in the same way that we use local packages.
117+
118+
import "github.com/astaxie/beedb"
119+
120+
## Directory complete structure
121+
122+
If you've followed all of the above steps, your directory structure should now look like the following.
123+
124+
bin/
125+
mathapp
126+
pkg/
127+
${GOOS}_${GOARCH}, such as darwin_amd64, linux_amd64
128+
mymath.a
129+
github.com/
130+
astaxie/
131+
beedb.a
132+
src/
133+
mathapp
134+
main.go
135+
mymath/
136+
sqrt.go
137+
github.com/
138+
astaxie/
139+
beedb/
140+
beedb.go
141+
util.go
142+
143+
Now you are able to see the directory structure clearly; `bin` contains executable files, `pkg` contains compiled files and `src` contains package source files.
144+
145+
(The format of environment variables in Windows is `%GOPATH%`, however this book mainly follows the Unix-style, so Windows users need to replace these yourself.)
146+
147+
## Links
148+
149+
- [Directory](preface.md)
150+
- Previous section: [Installation](01.1.md)
151+
- Next section: [Go commands](01.3.md)

0 commit comments

Comments
 (0)