You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installing from git repo (using ssh) hangs forever. This only happens if you have steps in the ssh that require user input.
For example, if you have to type a password for your ssh key, or you have to type "yes" to accept a host key.
If there are no manual steps needed for ssh, there is no issue.
How to reproduce
try to install a packages using a git ssh url, for example:
Describe the bug
Installing from git repo (using ssh) hangs forever. This only happens if you have steps in the ssh that require user input.
For example, if you have to type a password for your ssh key, or you have to type "yes" to accept a host key.
If there are no manual steps needed for ssh, there is no issue.
How to reproduce
try to install a packages using a git ssh url, for example:
but make sure that your ssh key requires a password, and isn't on your toolchain.
Then pipx will hang forever, appearing like it is trying to do something.
Expected behavior
It should prompt you for your ssh password.
My guess is this is happening because stdout isn't being piped to the current process and stdin isn't being piped back to the subprocess.
The text was updated successfully, but these errors were encountered: