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?

More than 1 year has passed since last update.

パッケージ管理ツールのメモ一覧

Last updated at Posted at 2020-02-23

パッケージ管理

Redhat Linux:

  • yum (Yellowdog Updater Modified), DNF

Debian Linux:

  • apt

macOS:

  • Homebrew : macOS上でソフトウェアの導入を単純化するパッケージ管理システム
  • "brew -v"
  • "brew update"

Node.js:
nodebrew

  • "brew upgrade nodebrew"
  • "nodebrew -v"
  • "nodebrew ls-remote" (オンラインでAvailableなバージョン)
  • "nodebrew install-binary v11.11.1"
  • "nodebrew ls"
  • "nodebrew use v11.11.2"

参考:「Node.jsのバージョンアップ for Mac」 https://qiita.com/Hide-Zaemon/items/cbb4497237843a729994

npm(Node Package Manager)

  • npm ls (依存関係ツリーの表示)
  • npm -v (バージョン確認)

JavaScript:
Bower

Swift: CocoaPods

バージョン切り替え:

Ruby: rbenv

  • rbenv -v
  • rbenv install --list (オンラインにAvailableなバージョンリスト)
  • rbenv install 2.6.9 (バージョンのインストール)
  • rbenv versions (ローカルにインストールされたバージョンリスト)
  • rbenvglobal 2.6.9 (デフォルトで使うバージョンの指定)
  • ruby -v (念の為、確認)
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?