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
thanks raising this. We are aware of this issue and there is an open issue to fix this: #1257.
Indeed, export PIPX_HOME=$HOME/.local/pipx seems like the best way to fix this right now as a user.
thanks raising this. We are aware of this issue and there is an open issue to fix this: #1257. Indeed, export PIPX_HOME=$HOME/.local/pipx seems like the best way to fix this right now as a user.
There are so many open issues with same trouble:
There are so many things and answers, but the problem in the header of the python venv:
#!/Users/USER/Library/Application Support/pipx/venvs/<some_app>/bin/python
As Im understanding the header of the bin/python:
#!/.../bin/python
could not to contain symbol.symbol is interpreted as HARD separator.
According to the
pipx environment
, the main problem with the$PIPX_HOME
.On MacOS with HomeBrew
PIPX_HOME = /Users/USER/Library/Application Support/pipx
It's containing SPACE.
I think the best way is to set linux like variable:
PIPX_HOME=$HOME/.local/pipx
It's correcting head links
#!/.../bin/python
.When Im using:
the header at
.local/bin/<some_app>
is going to the:#!/Users/USER/.local/pipx/venvs/<some_app>/bin/python ...
Its work fine, and
PIPX_HOME=$HOME/.local/pipx
is looks more canonical ;-)The text was updated successfully, but these errors were encountered: