laullon / b2t80s

b2t80s - Z80 Based Computers Emulator (back to the 80's)
MIT License
6 stars 0 forks source link

Incomplete instructions to compile in GNU/Linux? #4

Closed cpcbegin closed 4 years ago

cpcbegin commented 4 years ago

I try to compile the emulator in Ubuntu Mate 18.04 64 bits with these commands:

sudo apt install go-bindata  golang-go git
git clone https://github.com/laullon/b2t80s
go get -u github.com/go-bindata/go-bindata/...
go-bindata -pkg data -o data/data.go data/...

And I try to run a ZX Spectrum game with the command: go run main.go --mode 48k -tap "/home/miuser/zxspectrum/homebrew/altair_zx_es.tap"

But I get this error: error cannot find package "fyne.io/fyne"

laullon commented 4 years ago

Thanks for reporting, will take a look.

laullon commented 4 years ago

you can download the binary emulator from here: https://github.com/laullon/b2t80s/releases

cpcbegin commented 4 years ago

Thanks! ;-)

laullon commented 4 years ago

Which go version are you using ? It should be go v1.13

cpcbegin commented 4 years ago

I'm using the go version included in Ubuntu 18.04 repositories: go version go1.10.4 linux/amd64