beego安裝出現的問題

安裝命令

go get github.com/astaxie/beego
go get github.com/beego/bee

出現問題含有關鍵字128

# cd .; git clone -- https://github.com/astaxie/beego C:\Users\26825\go\src\github.com\astaxie\beego
Cloning into 'C:\Users\26825\go\src\github.com\astaxie\beego'...
fatal: unable to access 'https://github.com/astaxie/beego/': error:1408F10B:SSL routines:ssl3_get_record:wrong version number
package github.com/astaxie/beego: exit status 128

使用

git config --global http.sslVerify false

出現問題含有關鍵字from $GOPATH

        E:\app\go\src\github.com\shiena\ansicolor (from $GOROOT)
        C:\Users\26825\go\src\github.com\shiena\ansicolor (from $GOPATH)

使用

 go get -u github.com/astaxie/beego
 go get -u github.com/beego/bee

如果還是卡住,則替換HTTPS爲HTTP

git config --global url.git://github.com/.insteadOf https://github.com/
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章