Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how do i build this? #5

Closed
evnix opened this issue Jul 16, 2016 · 3 comments
Closed

how do i build this? #5

evnix opened this issue Jul 16, 2016 · 3 comments
Labels

Comments

@evnix
Copy link

evnix commented Jul 16, 2016

i tried this

$ go build boltbrowser.go 
# command-line-arguments
./boltbrowser.go:18: undefined: BoltDB
./boltbrowser.go:44: undefined: defaultStyle
./boltbrowser.go:47: undefined: mainLoop

@br0xen br0xen added the invalid label Jul 16, 2016
@br0xen
Copy link
Owner

br0xen commented Jul 16, 2016

You have to install all of the dependencies for it.
Go makes this easy, you can just type 'go get -u github.com/br0xen/boltbrowser' and it will download and install all dependencies for the project.

@br0xen br0xen closed this as completed Jul 16, 2016
@evnix
Copy link
Author

evnix commented Jul 17, 2016

$ go get -u github.com/br0xen/boltbrowser
$ #  go build boltbrowser.go
command-line-arguments
./boltbrowser.go:18: undefined: BoltDB
./boltbrowser.go:44: undefined: defaultStyle
./boltbrowser.go:47: undefined: mainLoop

i have also installed boltdb prior to that command.

@br0xen
Copy link
Owner

br0xen commented Jul 18, 2016

When you are using the go build boltbrowser.go command, you are telling go to build only that file, not the complete project. What you actually want to do is just go build or go install.

I would recommend that you check out the go documentation, all of this is explained there.

backwardn pushed a commit to backwardn/boltbrowser that referenced this issue Oct 2, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants