-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
treewide: add a powershell install script and explain how to use it
- Loading branch information
1 parent
e2bc18a
commit 7da23cb
Showing
3 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
if (Get-AppxPackage -Name MicrosoftCorporationII.WindowsSubsystemForLinux) { | ||
Write-Host "---" | ||
Write-Host "Installing NixOS-WSL" | ||
Write-Host "---" | ||
Invoke-WebRequest -Uri "https://github.com/nix-community/NixOS-WSL/releases/download/22.05-5c211b47/nixos-wsl-x86_64-linux.tar.gz" -OutFile "nixos-wsl-installer.tar.gz" | ||
wsl.exe --import NixOS-nixified-ai $HOME\.NixOS-nixified-ai nixos-wsl-installer.tar.gz --version 2 | ||
rm nixos-wsl-installer.tar.gz | ||
sleep 5 | ||
} | ||
|
||
if (!(Get-AppxPackage -Name MicrosoftCorporationII.WindowsSubsystemForLinux)) { | ||
try { | ||
Write-Warning "---" | ||
Write-Warning "Windows tells us that WSL is not enabled, trying wsl.exe --install --no-distribution" | ||
Write-Warning "This will work on a fresh Windows machine, otherwise it's up to you to install the WSL" | ||
Write-Warning "---" | ||
wsl.exe --install --no-distribution | Out-Null | ||
if(!$?) { | ||
$error=1 | ||
} | ||
else { | ||
Write-Warning "Successfully installed the WSL, you now need to reboot and run this script again!" | ||
sleep 5 | ||
exit | ||
}; | ||
} | ||
catch { | ||
Write-Warning 'Unable to install the WSL (Microsoft-Windows-Subsystem-Linux) feature via wsl.exe --install --no-distribution' | ||
Write-Warning 'Try to install WSL manually, such as via the Windows Store, or by following' | ||
Write-Warning 'https://learn.microsoft.com/en-us/windows/wsl/install' | ||
sleep 5 | ||
exit | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,20 @@ Please contact [[email protected]](mailto:[email protected]) or [c | |
|
||
--- | ||
|
||
## Install NixOS-WSL in Windows | ||
|
||
If you're interested in running nixified.ai in the Windows Subsystem for Linux, you'll need to enable the WSL and then install NixOS-WSL via it. We provide a script that will do everything for you. | ||
|
||
1. Execute the following in Powershell | ||
|
||
`Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/nixified-ai/flake/master/install.ps1'))` | ||
|
||
The WSL must be installed via the Windows Store. The script will make an attempt to enable it automatically, but this only works on a fresh system, not one that has been modified manually. | ||
|
||
See the following documentation from Microsoft for the details on how to enable and use the WSL manually | ||
|
||
- [https://learn.microsoft.com/en-us/windows/wsl/install](https://learn.microsoft.com/en-us/windows/wsl/install) | ||
|
||
# Packaged Projects | ||
|
||
### KoboldAI | ||
|