1
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?

【Windows】パッケージ管理ツール(Scoop)の紹介

Last updated at Posted at 2024-10-28

前置き

Windows上で開発をする際に、何を入れたのか、なんのバージョンを入れたのかわからんくなることがあるので、Scoopというパッケージマネージャーを使って、管理してみました。

Scoopとは何か?

Windows向けのCLI操作が可能なパッケージマネージャーです。
類似製品に、chocolatelyがありますが、scoopのほうが使い勝手はよさそう

インストール

  1. スタートボタンを右クリックを押下し、「ターミナル」を選択します
  2. 以下のコマンドを転記
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

使い方

アップデートする

scoop update # scoopそのものを更新する
scoop update {library} # libraryを更新する
scoop update * # すべてのパッケージを更新する

パッケージを検索

scoop search python

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

scoop install {library}

インストール済みのパッケージをリスト化

scoop list

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

scoop uninstall {library}

まとめ

scoop listでインストールしたものがわかります。
また、使わなくなったらすぐ削除できるので、リソース削減にもなり、便利でした。
よかったらつかってみてください。

1
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
1
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?