Read the README.txt before this

The dollar sign in front of something means you should type this in the terminal
You may have to run some of these commands as root!

Note that the export command is tied to the current terminal process, if you close your terminal you will need to run this command

1) 
	install go with:
	$ sudo apt install golang-go

1 alternate)
	if you want the newest version of go you will have to install it manually instead:
		download go from:
		https://dl.google.com/go/go1.10.2.linux-amd64.tar.gz 
		and unpack it into /usr/local
		$ 
		(you can use a different directory if you like but you will need to setup the GOROOT variable manually to point to your folder)

		this might be needed on some systems:
		$ export PATH=$PATH:/usr/local/go/bin
 again or you can add it to

		now check if go installed correctly

		$ go version

		you should get something similar to "go version go1.10.1 linux/amd64" if all went well

2) 
	set GOPATH to your work directory.
		you can do this by making a new folder anywhere and naming it whatever you want, then making a new folder inside of it named "src"
		
		$export GOPATH=$HOME/path/to/dir/you/just/made

		(you can make this persist throught terminal restarts by adding it to your your /etc/profile file)

3)

	install ebiten

	$ sudo apt install libglu1-mesa-dev libgles2-mesa-dev libxrandr-dev libxcursor-dev libxinerama-dev libxi-dev libasound2-dev

	$ go get github.com/hajimehoshi/ebiten/...

	$ go get github.com/hajimehoshi/ebiten/audio






















