Updated Installation (markdown)

Hajime Hoshi 2017-05-12 23:54:23 +09:00
parent ccfa02bf9e
commit 4da394657a

@ -1,7 +1,7 @@
Let's get the Ebiten source code and compile it. Let's get the Ebiten source code and compile it.
```sh ```sh
go get github.com/hajimehoshi/ebiten/... go get github.com/hajimehoshi/ebiten
``` ```
If you want to run your game on a web browser, execute this: If you want to run your game on a web browser, execute this:
@ -9,4 +9,10 @@ If you want to run your game on a web browser, execute this:
```sh ```sh
go get github.com/gopherjs/gopherjs go get github.com/gopherjs/gopherjs
go get github.com/gopherjs/webgl go get github.com/gopherjs/webgl
```
If you want to recompile every time when you run your game, you can install them.
```sh
go install github.com/hajimehoshi/ebiten
``` ```