Windows nsis install documentation improvements (#3179)

* Adding additional NSIS install methods (Scoop, Winget) to windows-installer.mdx

Adding Scoop and Winget package managers to the list of methods by which NSIS can be installed.

* Update windows-installer.mdx

Reordering so chocolatey is last, as Scoop or Winget are better/newer options
This commit is contained in:
Luke Watts
2024-01-17 22:37:58 +11:00
committed by GitHub
parent 3e5df3c7f1
commit b498cddcad
+14 -1
View File
@@ -18,13 +18,26 @@ Wails supports generating Windows installers using the [NSIS installer](https://
The installer is available on the [NSIS Download](https://nsis.sourceforge.io/Download) page.
You can install with [Scoop](https://scoop.sh/) (which will automatically add it to your PATH):
```
scoop add bucket extras
scoop install nsis
```
Or, you can use Winget (on Windows 10+):
```
winget install NSIS.NSIS --silent
```
If you use the chocolatey package manager, run the following script:
```
choco install nsis
```
If you install NSIS manually, you need to add the _Bin_ folder, which contains `makensis.exe`, in your NSIS installation to your path.
**NOTE:** If you install NSIS manually, you need to add the _Bin_ folder, which contains `makensis.exe`, in your NSIS installation to your path.
[Here](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/) is a good tutorial on how to add to path on Windows.
### Linux