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
Running bash <(curl -s https://tinker.bunq.com/python/setup.sh) returned
Could not find "pipenv", try installing it by running "pip install pipenv".
even thoughpip list does show pipenv and pip install pipenv says it is already installed.
The problem is that which pipenv (which setup.py runs to verify it being present) indeed returned nothing. I was able to fix this by installing it again through brew install pipenv which does install itself in the user's path:
$ which pipenv
/usr/local/bin/pipenv
The text was updated successfully, but these errors were encountered:
Running
bash <(curl -s https://tinker.bunq.com/python/setup.sh)
returnedeven though
pip list
does showpipenv
andpip install pipenv
says it is already installed.The problem is that
which pipenv
(whichsetup.py
runs to verify it being present) indeed returned nothing. I was able to fix this by installing it again throughbrew install pipenv
which does install itself in the user's path:The text was updated successfully, but these errors were encountered: