We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Make sure you run commands with -v flag before pasting the output.
-v
Attempted to install in Windows based on the suggested command:
(Invoke-WebRequest -Uri https://pdm-project.org/install-pdm.py -UseBasicParsing).Content | python -
An array of bytes is printed. pdm is not installed.
pdm should have been installed.
Explicitly encoding the content as a string allowed pdm to be installed.
[System.Text.Encoding]::UTF8.GetString((Invoke-WebRequest -Uri https://pdm-project.org/install-pdm.py).Content) | python -
The text was updated successfully, but these errors were encountered:
b22e95a
Successfully merging a pull request may close this issue.
Make sure you run commands with
-v
flag before pasting the output.Steps to reproduce
Attempted to install in Windows based on the suggested command:
(Invoke-WebRequest -Uri https://pdm-project.org/install-pdm.py -UseBasicParsing).Content | python -
Actual behavior
An array of bytes is printed. pdm is not installed.
Expected behavior
pdm should have been installed.
Workaround
Explicitly encoding the content as a string allowed pdm to be installed.
[System.Text.Encoding]::UTF8.GetString((Invoke-WebRequest -Uri https://pdm-project.org/install-pdm.py).Content) | python -
The text was updated successfully, but these errors were encountered: