mirror of https://github.com/hyperledger/besu
An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
778 B
22 lines
778 B
description: Install Pantheon on Windows from Chocolatey package manager
|
|
<!--- END of page meta data -->
|
|
|
|
# Install Chocolatey
|
|
|
|
To install Chocolatey:
|
|
|
|
1. Open **cmd.exe** as administrator by right-clicking on **cmd.exe** in the Start menu and selecting **Run as administrator**.
|
|
|
|
2. Run:
|
|
|
|
```bat
|
|
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
|
|
```
|
|
|
|
3. Display the Chocolatey help to confirm installation:
|
|
|
|
```bat
|
|
choco -?
|
|
```
|
|
|
|
For more information, refer to the [Chocolatey documentation](https://chocolatey.org/install). |