I am trying to install pipenv using Homebrew as suggested in here.
First, I ran $ brew install pipenv
. Then, brew install python 3.7 automatically and I can use pipenv properly. But, I want to use pipenv on Python 3.6, so I ran $ brew switch python 3.7 3.6.5
and then when I tried $ pipenv install
an error appeared as follow:
dyld: Library not loaded: @executable_path/../.Python
Referenced from: /usr/local/Cellar/pipenv/2018.11.26/libexec/bin/python3.7
Reason: image not found
Abort trap: 6
Is there any solution to install pipenv along with Python 3.6.5?
Thank you.