1
1

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 1 year has passed since last update.

brewコマンド

Posted at

brewコマンドについて

Homebrew (brew) を使用して、macOSにソフトウェアパッケージをインストール、アップデート、アンインストールするための基本的なコマンド例を説明します。

  1. パッケージの検索:

    brew searchコマンドを使用して、Homebrewのリポジトリから特定のパッケージを検索できます。

    brew search パッケージ名
    

    例えば、curlというパッケージを検索する場合:

    brew search curl
    
  2. パッケージのインストール:

    brew installコマンドを使用して、ソフトウェアパッケージをインストールします。

    brew install パッケージ名
    

    例えば、curlをインストールする場合:

    brew install curl
    
  3. パッケージのアップデート:

    brew updateコマンドでHomebrew自体をアップデートし、brew upgradeコマンドを使用してインストール済みのすべてのパッケージをアップデートします。

    # Homebrew自体のアップデート
    brew update
    
    # インストール済みのすべてのパッケージをアップデート
    brew upgrade
    
  4. 特定のパッケージのアップデート:

    特定のパッケージをアップデートするには、brew upgradeコマンドとパッケージ名を指定します。

    brew upgrade パッケージ名
    

    例えば、curlをアップデートする場合:

    brew upgrade curl
    
  5. パッケージのアンインストール:

    brew uninstallコマンドを使用して、特定のパッケージをアンインストールできます。

    brew uninstall パッケージ名
    

    例えば、curlをアンインストールする場合:

    brew uninstall curl
    
  6. Homebrewのバージョンを確認;
    Homebrewのバージョンを確認するには、次のコマンドを使用します。

    brew --version
    
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?