0
0

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 3 years have passed since last update.

dockerを用いたgoreのinstall方法

Last updated at Posted at 2021-10-21

みんなのGoという書籍を見ながら、goreをインストールしようとしたができなかったので、dokerを用いてgoreをインストールしてみた。

##公式レポジトリのREADNEに書いてあるとおり、以下を実行していく。

###1. まずはgit clone

git clone https://github.com/x-motemen/gore.git

###2. goreのディレクトリに移動し、dockerのbuildとrunを実行

cd gore 
docker build -t gore .
docker run -it --rm gore

####追記

書籍に書いてあるgo getを用いた方法は、筆者のGo 1.17.2のバージョンでは動作しなかった。

go get github.com/motemen/gore/cmd/gore

これはGo1.16からのアップデートで、go getの代わりにgo installを使う仕様変更があったため。

####参照記事、書籍

・改訂2版 みんなのGo言語

・CloneしたRepository↓

・Go 公式のサイト↓

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?