-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add nuget windows install instructions #130
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.
Didn't actually try out the nuget
commands (cause no Windows), but the rest of the changes look good to me!
docs/installing_cpython.md
Outdated
$url = 'https://www.nuget.org/api/v2/package/python-freethreaded/3.13.1' | ||
Invoke-WebRequest -Uri $url -OutFile 'python-freethreaded.3.13.1.nupkg' | ||
Install-Package python-freethreaded -Scope CurrentUser -Source $pwd | ||
$env:path = (Get-Item((Get-Package -Name python-freethreaded).Source)).DirectoryName + "tools;" + $env:Path |
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.
I found today I should add the tools/Scripts
folder to the Path as well. Not near my computer so I'll update this later.
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.
LGTM too, thanks for taking care of this @ngoldbaum. Please go ahead and merge once you've made the one change that is still needed according to the open comment from you.
Thanks for the reminder! |
I also took the opportunity to update references to older Python versions