Scoopを使ってみた

Scoopとは

マルチプラットフォームなCLI形式のアプリ導入、パッケージ管理ツール

RHLE/CentOSのyumみたいなもの

Install

PS C:\Users\otsuka> Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

実行ポリシーの変更
実行ポリシーは、信頼されていないスクリプトからの保護に役立ちます。実行ポリシーを変更すると、about_Execution_Policies
のヘルプ トピック (https://go.microsoft.com/fwlink/?LinkID=135170)
で説明されているセキュリティ上の危険にさらされる可能性があります。実行ポリシーを変更しますか?
[Y] はい(Y)  [A] すべて続行(A)  [N] いいえ(N)  [L] すべて無視(L)  [S] 中断(S)  [?] ヘルプ (既定値は "N"): A
PS C:\Users\otsuka> irm get.scoop.sh | iex
Initializing...
Downloading...
Extracting...
Creating shim...
Adding ~\scoop\shims to your path.
Scoop was installed successfully!
Type 'scoop help' for instructions.

参考

Don’t forget to add “fnm env –use-on-cd | Out-String | Invoke-Expression” to your powershell profile.

上にスクロール