1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 13:15:28 +02:00
tldr/pages.ja/common/asdf.md
Kemel Zaidan 35951e7a3e
asdf: update page (#15750)
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com>
2025-03-26 06:32:12 +05:30

28 lines
846 B
Markdown

# asdf
> さまざまなパッケージのバージョンを管理するためのコマンドラインインターフェイスです。
> もっと詳しく: <https://asdf-vm.com/manage/commands.html>。
- 利用可能なプラグインの一覧を表示:
`asdf plugin list all`
- プラグインのインストール:
`asdf plugin add {{プラグイン名}}`
- パッケージで利用可能なすべてのバージョンの一覧を表示:
`asdf list all {{パッケージ名}}`
- パッケージの特定バージョンのインストール:
`asdf install {{パッケージ名}} {{バージョン}}`
- パッケージのグローバルバージョンの設定:
`asdf set -u {{パッケージ名}} {{バージョン}}`
- パッケージのローカルバージョンの設定:
`asdf set {{パッケージ名}} {{バージョン}}`