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
Using inject --include-binaries original new on a new package that doesn't have binaries will remove the existing binaries from PATH.
# Create a virtualenv with ipython binary
pipx install ipython
# Add black binary to the virtualenv
pipx inject --include-binaries ipython black
which black
# Add toolz to the virtualenv, even though it doesn't have a binary
pipx inject --include-binaries ipython toolz
# Black is now missing
which black
I do this --inject-binaries even for packages that don't have binaries because I like to have a main virtualenv with most of my things in it. I want to run a single command to get everything I need. Since pipx doesn't yet support a single command to get multiple things, I'm splitting it into two.
Using
inject --include-binaries original new
on anew
package that doesn't have binaries will remove the existing binaries from PATH.I do this
--inject-binaries
even for packages that don't have binaries because I like to have a main virtualenv with most of my things in it. I want to run a single command to get everything I need. Since pipx doesn't yet support a single command to get multiple things, I'm splitting it into two.The text was updated successfully, but these errors were encountered: