-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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 | ||||||
| Invoke-Expression “& {$(Invoke-RestMethod get.scoop.sh)} -RunAsAdmin” | ||||||
|
Comment on lines
+25
to
+28
|
||||||
| ``` | ||||||
|
|
||||||
| **NOTE: Make sure to close out terminal to reflect changes** | ||||||
|
|
||||||
| 3. Run below command to confirm Scoop installment by listing available commands on Scoop | ||||||
|
||||||
| 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
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.
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.
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'.