1
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.

GitHub から binary file をインストールする

Last updated at Posted at 2022-03-27

githubページからインストールするには、releasesページを参照。

image.png

コマンドライン上でインストールしたいのであれば、上記のページのリンクを使用して cURLでインストールすれば良い。

curl -L https://github.com/itamae-kitchen/mitamae/releases/download/v1.12.9/mitamae-x86_64-darwin.tar.gz 
\  | tar xvz

おまけ① sha256 hash の取得方法

インストールしたファイルの、sha256 hash code を取得する方法は以下。

 curl -L https://github.com/itamae-kitchen/mitamae/releases/download/v1.12.9/mitamae-x86_64-darwin.tar.gz
\  | shasum -a 256  

おまけ② インストール && 解凍 && pathを通す方法

以下のスクリプトが参考になりそう。
https://github.com/k0kubun/dotfiles/blob/master/bin/setup

1
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
1
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?