-4

Andres-Air:~ iivri.andre$ go get github.co/beego/bee package github.co/beego/bee: unrecognized import path "github.co/beego/bee" (https fetch: Get https://github.co/beego/bee?go-get=1: dial tcp 199.59.243.120:443: i/o timeout

It keeps showing me this 'error' Is anyone here familiar with the installation process?

iivri andre
  • 51
  • 2
  • 7
  • 1
    I think you're missing an 'm': `go get github.com/beego/bee`. And according to the instructions it's `go get github.com/astaxie/beego` – Dekker1 Nov 03 '16 at 21:56

1 Answers1

0

That is not the url path for Beego. You also have a typo after your go get command.

You need to run this from your command line:

go get github.com/astaxie/beego

Installation directions from Beego

nosequeldeebee
  • 935
  • 9
  • 14