anlogg
anlogg

Reputation: 1090

Nothing happens when running go get github.com/astaxie/beego

warning: noob question ahead :-)

I was trying to run go get github.com/astaxie/beego but it does nothing. I have been running examples I picked up from the internet and I installed gotour successfully. Any idea why?

Upvotes: 7

Views: 4971

Answers (3)

fewrandom
fewrandom

Reputation: 318

If it doesn't show anything, it doesn't mean nothing works. Try doing the same with '-v' flag

go get -v github.com/astaxie/beego

Besides, all your downloads will be saved (most probably) somewhere to your '~' directory ('~/go/src' in my case), not in your current terminal directory

Upvotes: 2

Garonenur
Garonenur

Reputation: 21

if on Ubuntu/Debian?, try the golang package for installing go. it seems to work for me quite well.

Upvotes: 0

anlogg
anlogg

Reputation: 1090

Turns out my setup was messed up. I purged everything and installed golang using this nifty script: https://github.com/moovweb/gvm. It takes care of everything. Thanks @peterSO for the help.

Upvotes: 5

Related Questions