6
3

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.

エラー解決 herokuの導入

Last updated at Posted at 2020-02-27

herokuに手を出して見ようと思い
エラーが出たのでその備忘録を

brew install heroku からのエラー

基本となるこちらからインストールしようとしたら
下記のようなエラーが出ました。

Error: No available formula with the name "heroku" 
==> Searching for a previously deleted formula (in the last month)...
Warning: homebrew/core is shallow clone. To get complete history run:
  git -C "$(brew --repo homebrew/core)" fetch --unshallow

Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.

原因 brew tap の忘れ

brew tapとは公式以外のリポジトリをフォーミュラとしてHomebrewに追加するものです。

要は非公式な方法を追加する形です。

結果としてしたのコマンドを打てば解決します。

brew tap heroku/brew

フォーミュラ

formulaの意味: 手順、ビルド方法、手順が書かれたスクリプトなどです。

解決結果

$ brew tap heroku/brew && brew install heroku
# 上記のコマンドでフォーミュラの追加とインストールまとめて行います。

# ついでに下記のコマンドでバージョン確認です。
$ heroku --version

解決経緯

エラー内容の検索から
かきのリンクに飛び
https://qiita.com/Feel-Physics/items/98b4aacbd6e52a2bde2e

中身をみていたら、tapに触れた内容があったので、tapとherokuを繋げた検索をしたら解決

検索と探索が決めてでした。

6
3
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
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?