目次
Chocolatey とは
Chocolateyとは、Windowsで動作するソフトウェアをコマンドラインで管理できるツールです。
Chocolateyを利用すると、Linuxの apt
やyum
のような感覚でコマンドラインで簡単にソフトウェアをインストールできるようになります。
インストール
Chocolatery公式サイト( https://chocolatey.org/install#individual )でインストールコマンドを確認します。
PowerShellを管理者として起動してインストールコマンドを入力、実行します。
Installing Chocolatey
Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/S…
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
確認
choco -v
を実行
PS C:\Windows\system32> choco -v
1.1.0
実行例
試しに gpg4win をインストールしてみます。
PS C:\Windows\system32> choco install gpg4win -y
Chocolatey v1.1.0
Installing the following packages:
gpg4win
By installing, you accept licenses for the packages.
Progress: Downloading Gpg4win 4.0.4... 100%
Gpg4win v4.0.4 [Approved]
gpg4win package files install completed. Performing other installation steps.
Installing gpg4win...
gpg4win has been installed.
gpg4win may be able to be automatically uninstalled.
Environment Vars (like PATH) have changed. Close/reopen your shell to
see the changes (or in powershell/cmd.exe just type `refreshenv`).
The install of gpg4win was successful.
Software installed to 'C:\Program Files (x86)\Gpg4win\..\GnuPG'
Chocolatey installed 1/1 packages.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
2,3分待っているとインストールが完了していました。
インストーラのダウンロードや実行、インストール先設定などを勝手にやってくれるので、簡単です。
アップデート方法
Chocolatey を使ってパッケージを管理する(アップデート編)
【現在のバージョンの確認】 choco -v を実行 PS C:\Windows\system32> choco -v 1.1.0 【アップデート】 PowerShell を管理者として起動して choco upgrade chocola…