Pipenv with Conda?
You can setup Pipenv to use Conda’s Python executable and site packages directory (ref). pipenv –python=$(conda run which python) –site-packages You can check if you are indeed using your Conda environment in Pipenv: pipenv run python >>> import sys >>> sys.executable, sys.path # <directories under your Conda environment> With NumPy installed through Conda, but not … Read more