Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,30 @@ curl -sSL https://install.python-poetry.org | python3 -
brew install poetry
```

### 1. Install Poetry (Windows)
1. Open PowerShell with administrative privileges by right-clicking on PowerShell and select "Run as administrator"

2. Copy and paste the commands below
```bash
# To set execution policy
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
# To download Scoop and by running the installer script for Scoop w/ elevated privileges
Copy link

Copilot AI Sep 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The comment has awkward phrasing. Consider revising to: '# Download and install Scoop with elevated privileges'.

Suggested change
# To download Scoop and by running the installer script for Scoop w/ elevated privileges
# Download and install Scoop with elevated privileges

Copilot uses AI. Check for mistakes.
Invoke-Expression “& {$(Invoke-RestMethod get.scoop.sh)} -RunAsAdmin”
Comment on lines +25 to +28
Copy link

Copilot AI Sep 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code block is marked as 'bash' but contains PowerShell commands. Change the language identifier to 'powershell' for proper syntax highlighting.

Copilot uses AI. Check for mistakes.
```

**NOTE: Make sure to close out terminal to reflect changes**

3. Run below command to confirm Scoop installment by listing available commands on Scoop
Copy link

Copilot AI Sep 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The word 'installment' should be 'installation' in this context.

Suggested change
3. Run below command to confirm Scoop installment by listing available commands on Scoop
3. Run below command to confirm Scoop installation by listing available commands on Scoop

Copilot uses AI. Check for mistakes.
```bash
Copy link

Copilot AI Sep 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code block is marked as 'bash' but contains a command that would be run in PowerShell on Windows. Change the language identifier to 'powershell' for consistency.

Copilot uses AI. Check for mistakes.
scoop -h
```

4. Install pipx via Scoop
```bash
scoop install pipx
pipx ensurepath
Comment on lines +40 to +41
Copy link

Copilot AI Sep 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code block is marked as 'bash' but contains commands that would be run in PowerShell on Windows. Change the language identifier to 'powershell' for consistency.

Copilot uses AI. Check for mistakes.
```

### 2. Install KSP Mods
Install the **kRPC mod** for Kerbal Space Program:
- Download and install **CKAN** (KSP mod manager): https://krpc.github.io/krpc/getting-started.html
Expand Down