Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR adds Windows-specific installation instructions for Poetry to the README.md file. The changes provide an alternative installation method using Scoop package manager for Windows users.
- Adds a new section with step-by-step Windows installation instructions
- Introduces Scoop package manager as the installation method for Windows
- Provides PowerShell commands for setting up the development environment
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| # To set execution policy | ||
| Set-ExecutionPolicy RemoteSigned -scope CurrentUser | ||
| # To download Scoop and by running the installer script for Scoop w/ elevated privileges | ||
| Invoke-Expression “& {$(Invoke-RestMethod get.scoop.sh)} -RunAsAdmin” |
There was a problem hiding this comment.
The code block is marked as 'bash' but contains PowerShell commands. Change the language identifier to 'powershell' for proper syntax highlighting.
| **NOTE: Make sure to close out terminal to reflect changes** | ||
|
|
||
| 3. Run below command to confirm Scoop installment by listing available commands on Scoop | ||
| ```bash |
There was a problem hiding this comment.
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.
| scoop install pipx | ||
| pipx ensurepath |
There was a problem hiding this comment.
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.
| ```bash | ||
| # To set execution policy | ||
| Set-ExecutionPolicy RemoteSigned -scope CurrentUser | ||
| # To download Scoop and by running the installer script for Scoop w/ elevated privileges |
There was a problem hiding this comment.
[nitpick] The comment has awkward phrasing. Consider revising to: '# Download and install Scoop with elevated privileges'.
| # To download Scoop and by running the installer script for Scoop w/ elevated privileges | |
| # Download and install Scoop with elevated privileges |
|
|
||
| **NOTE: Make sure to close out terminal to reflect changes** | ||
|
|
||
| 3. Run below command to confirm Scoop installment by listing available commands on Scoop |
There was a problem hiding this comment.
The word 'installment' should be 'installation' in this context.
| 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 |
Added instructions for Step 1 for WindowsOS