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?

【コマンド】Homebrew

Posted at

目次

コマンド

バージョンを確認する

brew --version

Homebrewを更新する

brew update

Homebrewを診断する

brew doctor

以下のコードが表示されたら正常です。

Your system is ready to brew.

パッケージをインストールする

brew install "パッケージ名"

パッケージをアンインストールする

brew uninstall "パッケージ名"

パッケージを更新する

指定したパッケージを更新する。

brew upgrade "パッケージ名"

全てのパッケージを更新する。

brew upgrade

パッケージを検索する

brew search "パッケージ名"

インストールパッケージを確認する

brew list

古いパッケージを削除する

削除する古いパッケージを事前確認する。

brew cleanup --dry-run

古いパッケージを削除する。

brew cleanup
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?