From d393d47a7c07653c6a33738c04fc1fa6eb096ef3 Mon Sep 17 00:00:00 2001 From: jon Date: Wed, 22 Jul 2026 18:27:17 -0500 Subject: [PATCH] docs: fold the Windows quick-start back into one powershell block Co-Authored-By: Claude Opus 4.8 --- README.md | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 16dc6a0..49b70d4 100644 --- a/README.md +++ b/README.md @@ -36,33 +36,21 @@ manually from the app (**Start AI** in the sidebar), not at boot. ### Windows (recommended) -**0. Allow scripts to run.** PowerShell blocks unsigned scripts by default, -which stops Nexus's CLI from working. **Process** scope covers only the current -terminal window: - ```powershell +# 0. Allow scripts to run (PowerShell blocks unsigned scripts by default, which +# stops Nexus's CLI from working). Process scope covers only this window; +# LocalMachine makes it permanent so ncp works from every future shell (run +# PowerShell as Administrator for the LocalMachine line). Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass -Force -``` - -**LocalMachine** scope makes it permanent, so `ncp` works from every future -shell (run PowerShell as Administrator for this one): - -```powershell Set-ExecutionPolicy -Scope LocalMachine -ExecutionPolicy RemoteSigned -Force -``` -**1. Install Git and clone** (public repo, no account/token needed): - -```powershell +# 1. Install Git, then clone (public repo, no account/token needed): winget install Git.Git # open a NEW PowerShell window, then: git clone https://git.enderofwings.com/enderofwings/NexusOS.git nexus-core cd nexus-core -``` -**2. Native install** — winget Python/Node/Ollama, venv, pip, web build, desktop icon: - -```powershell +# 2. Native install — winget Python/Node/Ollama, venv, pip, web build, desktop icon powershell -ExecutionPolicy Bypass -File .\install-windows.ps1 ```