2019-12-18から1日間の記事一覧

gcloud crashed (AttributeError): 'OAuth2Credentials'

gcloud auth print-identity-token ってしたら以下のエラーが出た ERROR: gcloud crashed (AttributeError): 'OAuth2Credentials' object has no attribute 'id_token64' 解決策 以下で直る $ gcloud components update

go modのまとめ

go moduleの経緯 Go のコードはライブラリも含めてすべて $GOPATH/src 以下に置くという約束になっている そのためプロジェクト用ライブラリのバージョンを変えたい場合、固有のライブラリは $GOPATH/src/プロジェクト/vendor の下に入れても良いことになっ…