12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

「Go言語によるWebアプリケーション開発」でハマったところ

Last updated at Posted at 2016-05-05

Go言語によるWebアプリケーション開発でハマったところをメモ
##2章
###gomniauthが依存しているパッケージのせいでビルド出来ない。
brew install bazaarでうまくいくらしいけど、ダメだったので別の方法を探った。

  • エラーコード
../../stretchr/codecs/bson/bson_codec.go:5:2: cannot find package "labix.org/v2/mgo/bson" in any of:

bsonパッケージが見つからないということなので原因を探ってみると、bsonパッケージのパスが古く新しいパスになっていないことが分かった。Update bson package path #25 プルリクはよマージしろ

'/github.com/stretchr/codecs/bson/bson_codec.go'のimportを直接いじる。

bson_codec.go
 import (
  	"github.com/stretchr/codecs/constants"
 -	"labix.org/v2/mgo/bson"
 +	"gopkg.in/mgo.v2/bson"
  )

あとはgo get 'gopkg.in/mgo.v2/bson'でパッケージをインストールでOK

12
12
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?