-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
FAQ
Do you have a question that's not answered here? Please create an issue.
First, update Scoop to get the latest manifests:
scoop update
Then update the app, e.g. Git:
scoop update git
If you want to update all your apps at once, you can use the wildcard '*':
scoop update *
If you need to install a specific version of an app, use scoop install [app]@[version]
. E.g. for Git:
scoop install git@2.23.0.windows.1
You can install multiple versions of an app by using the @[version]
syntax with the install command:
scoop install git@2.19.0.windows.1
scoop install git@2.23.0.windows.1
You also install new versions of an app by running scoop update
when a new version is available: the old version will be persisted until you remove them with the scoop cleanup
command.
Please note: running scoop list
will show the LATEST version installed, not all of them. Run scoop info <app>
to see all installed versions of a particular app.
Use scoop reset [app]@[version]
. E.g. for terraform:
scoop reset terraform@0.11.14
will set the active installation of terraform to version 0.11.14.
scoop reset terraform@0.12.11
will reset the active installation of terraform to version 0.12.11.
scoop reset terraform
will reset the active installation of terraform to the latest installed version.
Please note: scoop reset
allows you to switch only between versions that are already installed.
Use scoop uninstall [app]
. E.g. for Git:
scoop uninstall git
It's likely that your antivirus or anti-malware program is doing a realtime scan as files are being extracted. Please see Antivirus and Anti-Malware Problems for more information and possible workarounds.
[todo: insert more FAQS here]