Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

go

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?

like image 815
anlogg Avatar asked Aug 02 '13 07:08

anlogg


2 Answers

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.

like image 95
anlogg Avatar answered Oct 12 '22 08:10

anlogg


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

like image 3
fewrandom Avatar answered Oct 12 '22 10:10

fewrandom