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?

Windowsのパッケージマネージャ「Scoop」のインストール方法

Posted at
1 / 4

初めに

本記事では、Windowsのパッケージマネージャ 「Scoop」 のインストール方法について解説します。
下記は、「Scoop」 の公式サイトです。


インストール方法について

インストール方法について解説します。解説と言っても公式サイトに記載されているの通り、 「PowerShell」 を起動して下記のコマンドを実行するだけです。

インストールコマンド
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

【公式サイトのQuickstart】
image.png

【PowerShellの実行結果】
実行後以下のように表示されたら成功です。

実行結果
PS C:\Users\ht-03> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
PS C:\Users\ht-03> Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
Initializing...
Downloading...
Extracting...
Creating shim...
Adding ~\scoop\shims to your path.
Scoop was installed successfully!
Type 'scoop help' for instructions.
PS C:\Users\ht-03>

image.png


Scoopが正常にインストールされたか確認

「Scoop」 が正常にインストールされたか確認するために、下記のコマンドを実行してください。

「Scoop」のバージョン確認コマンド
scoop --version

【PowerShellの実行結果】
実行後以下のように表示されたら成功です。

実行結果
PS C:\Users\ht-03> scoop --version
Current Scoop version:
v0.5.2 - Released at 2024-07-26

PS C:\Users\ht-03>

image.png

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?