LoginSignup
31
22

More than 3 years have passed since last update.

Windows10にChocolateyをインストールする

Posted at

Chocolateryとは

Windows用のパッケージマネージャーです。

インストール手順

Power Shellを起動する

  • Windowsのスタートボタンを押します。
  • メニューにある「Windows PowerShell」から「Windows PowerShell」を選択します。

Chocolateryをインストールする

  • Chocolatery公式サイトにあるインストールページ https://chocolatey.org/install にアクセスし、インストールコマンドを確認します。
  • Power Shellにインストールコマンドを入力し、実行します。
PS C:\> 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'))

Chocolaterynoのインストールを確認する

  • chocoコマンドが実行できればインストール完了です。
PS C:\> choco list -l
Chocolatey v0.10.15
chocolatey 0.10.15
1 packages installed.

お疲れ様でした。

31
22
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
31
22