Par exemple, lorsque l'erreur suivante se produit
$ pipenv run ./manage.py shell
Loading .env environment variables…
dyld: Library not loaded: @executable_path/../.Python
Referenced from: /Users/zenwerk/.virtualenvs/some-project/bin/python
Reason: image not found
/bin/sh: line 1: 10581 Abort trap: 6 pipenv run ./manage.py shell
make: *** [shell] Error 134
Dans le répertoire où se trouve Pipfile
, recréez l'environnement en suivant les étapes ci-dessous.
#Effacez l'environnement existant sans poser de questions
$ PIPENV_IGNORE_VIRTUALENVS=1 pipenv --rm
#Recréez l'environnement pipenv
$ pipenv sync
Creating a virtualenv for this project…
Pipfile: /Users/zenwerk/src/some-project/Pipfile
Using /usr/local/Cellar/pipenv/2018.11.26_2/libexec/bin/python3.7 (3.7.5) to create virtualenv…
⠏ Creating virtual environment...Already using interpreter /usr/local/Cellar/pipenv/2018.11.26_2/libexec/bin/python3.7
#Réinstallation de dépendance
$ pipenv install --dev