0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Chocolatelyのインストール

Last updated at Posted at 2020-10-03

1,2年前の記事通りにインストールを進めようとしたのですが、エラーが出て上手く行きませんでした。
素直にChocolately公式ページのガイドに従いました。
https://chocolatey.org/install

管理者権限でWindows PowerShellを起動

タスクバーの検索欄で「po」とか打つと候補に「Windows PowerShell」が出てきます。
「右クリック」→「管理者権限で起動(Run as Administrator)」

コマンド入力

下記コマンドをそのままコピペして入力します。

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'))

数分待って特にエラーなく終わればインストール完了

choco
choco /?

などとコマンドを叩けばインストールできたことを確認できるかと思います。

nodejsをインストールしたい場合は

choco install nodejs

と打つだけでインストールできます。

インストールできるものもChocolately公式から確認できます。
https://chocolatey.org/packages/

べんり

おわり

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?