Advertisement
TestPaster

How to install scoop

Apr 9th, 2025
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 0.51 KB | Source Code | 0 0
  1. Make sure you have Scoop installed
  2. If not, install it:
  3.  
  4. 1) Make sure you have Scoop installed
  5. (powershell)
  6. Set-ExecutionPolicy RemoteSigned -scope CurrentUser
  7. irm get.scoop.sh | iex
  8. Add the extras bucket (contains Redis)
  9.  
  10. 2) Add the extras bucket (contains Redis)
  11. (powershell)
  12. scoop bucket add extras
  13.  
  14. 3) Install Redis
  15. (powershell)
  16. scoop install redis
  17.  
  18. 4) Start Redis manually After installing, start it by running:
  19.  
  20. (powershell)
  21. redis-server
  22.  
  23.  
  24. You’ll see logs like:
  25. * Ready to accept connections
Tags: scoop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement