Closed doronbehar closed 6 years ago
First get dependencies:
$ sudo apt-get install g++
$ sudo apt-get install mosquitto-clients mosquitto
$ go get -u -v github.com/schollz/find3/...
Then start the AI server:
$ cd $GOPATH/src/github.com/schollz/find3/server/ai
$ sudo python3 -m pip install -r requirements.txt
$ make
Then start main server:
$ cd $GOPATH/src/github.com/schollz/find3/server/main
$ go build -v
$ ./main -port 8005
These instructions are at https://www.internalpositioning.com/doc/server_setup.md
I would like to package find3 main server for Arch Linux, I couldn't find instructions for building the it from source. While in
server/main
I tried to run the commands in theMakefile
but I got the following errors forgo build
:And for
dep ensure
:From my little understanding of go development, after
dep ensure
the 1st errors won't appear but there is noGopkg.toml
in the repo.