From 4da394657ab33571cbd8f11a45921453b0d85fe9 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 12 May 2017 23:54:23 +0900 Subject: [PATCH] Updated Installation (markdown) --- Installation.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Installation.md b/Installation.md index 545cb4b..3fa239a 100644 --- a/Installation.md +++ b/Installation.md @@ -1,7 +1,7 @@ Let's get the Ebiten source code and compile it. ```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: @@ -9,4 +9,10 @@ If you want to run your game on a web browser, execute this: ```sh go get github.com/gopherjs/gopherjs 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 ``` \ No newline at end of file