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

パッケージ管理ツール 類似コマンド一覧

Last updated at Posted at 2019-09-26

よく使うパッケージ管理ツールについて、機能毎のコマンドを一覧化します。

機能 yum apt pip npm homebrew
リポジトリから検索 yum search word apt search word pip search word npm search word brew search word
リポジトリからインストール yum install pkg apt install pkg pip install pkg npm install pkg brew install pkg
リポジトリからアップデート有無チェック yum check-update pip list --outdated npm outdated brew outdated
リポジトリから最新にアップデート yum update [pkg] apt upgrade pip install -U pkg
インストール済みのパッケージの情報 yum info pkg apt show pkg pip show pkg
インストール済みのパッケージ一覧 yum list installed pip list npm ls brew list --versions
アンインストール yum remove pkg apt remove pkg pip uninstall pkg npm uninstall pkg brew uninstall pkg
リポジトリ一覧 yum repolist all
リポジトリ追加 yum install repo
設定ファイル /etc/yum.conf
パッケージ管理ツールのバージョン確認 --- pip -V npm -v brew -v
パッケージ管理ツールのアップデート --- --- pip install --upgrade pip npm i -g npm brew update
3
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
3
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?