Chocolatey

Introduction

Chocolatey 和 scoop 一样是 windows 下的包管理软件。

需要

安装

管理员权限打开 Powershell:

1
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

基本使用

1
2
3
4
5
# 更新 Chocolatey
choco upgrade chocolatey

# 查找包

Reference

  1. One More Thing

-