Scoop: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
== Scoop == | |||
A command-line installer for Windows | |||
https://scoop.sh/ | |||
Scoop installs programs you know and love, from the command line with a minimal amount of friction. It: | |||
* Eliminates permission popup windows | |||
* Hides GUI wizard-style installers | |||
* Prevents PATH pollution from installing lots of programs | |||
* Avoids unexpected side-effects from installing and uninstalling programs | |||
* Finds and installs dependencies automatically | |||
* Performs all the extra setup steps itself to get a working program | |||
== Installation == | |||
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser | |||
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression | |||
== keywords == | == keywords == | ||
[[Category:Windows Package Management]] | [[Category:Windows Package Management]] |
Revision as of 19:02, 31 August 2024
Scoop
A command-line installer for Windows https://scoop.sh/
Scoop installs programs you know and love, from the command line with a minimal amount of friction. It:
- Eliminates permission popup windows
- Hides GUI wizard-style installers
- Prevents PATH pollution from installing lots of programs
- Avoids unexpected side-effects from installing and uninstalling programs
- Finds and installs dependencies automatically
- Performs all the extra setup steps itself to get a working program
Installation
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression