-
Notifications
You must be signed in to change notification settings - Fork 0
Updated README.md for Windows #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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” |
Copilot
AI
Sep 4, 2025
There was a problem hiding this comment.
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.
| **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 |
Copilot
AI
Sep 4, 2025
There was a problem hiding this comment.
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.
| scoop install pipx | ||
| pipx ensurepath |
Copilot
AI
Sep 4, 2025
There was a problem hiding this comment.
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.
| ```bash | ||
| # To set execution policy | ||
| Set-ExecutionPolicy RemoteSigned -scope CurrentUser | ||
| # To download Scoop and by running the installer script for Scoop w/ elevated privileges |
Copilot
AI
Sep 4, 2025
There was a problem hiding this comment.
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'.
| # 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 |
Copilot
AI
Sep 4, 2025
There was a problem hiding this comment.
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.
| 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