I\'ve reinstalled pip and pipenv due to some broken package with ansible. Now, it seems like my pip dependencies are all screwed. Any suggestion or help is greatly appreciated.
This should fix the problem too:
pipenv --rm
pipenv check
pipenv sync
I run into this problem from time to time when updating python using anaconda.
I had the same problem. You should reinstall pipenv
using the same package manager you used the first time.
If the installation was done using pip
, then:
pip uninstall pipenv
pip install pipenv
If you are using brew
, then you must run the commands exposed by Andrei
brew uninstall pipenv
brew install pipenv
To check if pipenv
installation was successfully completed, run:
pipenv --version
brew reinstall pipenv