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
exe.add_python_resources(exe.pip_download(["cmd2"])) caused the following error:
` ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
error[PYOXIDIZER_PYTHON_EXECUTABLE]: calling pip download
Caused by: error running pip --> ./pyoxidizer.bzl:243:30 | 243 | exe.add_python_resources(exe.pip_download(["cmd2"])) | ^^^^^^^^^^^^^^^^^^^^^^^^^^ PythonExecutable.pip_download()
error: calling pip download
`
My environment has Python cmd2 installed, as shown below, and the dependency requirement is satisfiled.
` pip3 install cmd2
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: cmd2 in /home/xiang/.local/lib/python3.10/site-packages (2.4.1)
Requirement already satisfied: wcwidth>=0.1.7 in /home/xiang/.local/lib/python3.10/site-packages (from cmd2) (0.2.5)
Requirement already satisfied: attrs>=16.3.0 in /home/xiang/.local/lib/python3.10/site-packages (from cmd2) (21.4.0)
Requirement already satisfied: pyperclip>=1.6 in /home/xiang/.local/lib/python3.10/site-packages (from cmd2) (1.8.2)
any idea? Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
exe.add_python_resources(exe.pip_download(["cmd2"]))
caused the following error:
`
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
error[PYOXIDIZER_PYTHON_EXECUTABLE]: calling pip download
error: calling pip download
`
My environment has Python cmd2 installed, as shown below, and the dependency requirement is satisfiled.
`
pip3 install cmd2
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: cmd2 in /home/xiang/.local/lib/python3.10/site-packages (2.4.1)
Requirement already satisfied: wcwidth>=0.1.7 in /home/xiang/.local/lib/python3.10/site-packages (from cmd2) (0.2.5)
Requirement already satisfied: attrs>=16.3.0 in /home/xiang/.local/lib/python3.10/site-packages (from cmd2) (21.4.0)
Requirement already satisfied: pyperclip>=1.6 in /home/xiang/.local/lib/python3.10/site-packages (from cmd2) (1.8.2)
`
any idea? Thanks!
The text was updated successfully, but these errors were encountered: