-
Notifications
You must be signed in to change notification settings - Fork 17
Getting Started
fawadasaurus edited this page Mar 23, 2023
·
3 revisions
Mac and Linux users can install the latest stable version of Wick with the following command in terminal:
curl -sSL sh.wick.run | bash
To download and install the nightly version, or other releases of wick, pass a single argument of the desired release.
curl -sSL sh.wick.run | bash -s -- nightly
Quick Install - Windows
Windows users can install the latest stable version of Wick with the following command in powershell:
curl https://ps.wick.run -UseBasicParsing | Invoke-Expression
To download and install the nightly version, or other releases of wick, pass a single argument of the desired release.
curl https://ps.wick.run -OutFile setup-wick.ps1; .\setup-wick.ps1 -ReleaseVersion "nightly"; rm setup-wick.ps1;
You can build using the Manual Install instructions from the main repository.