Pipenv allows the use of the system Python instead of creating a virtualenv to install packages:
$ pipenv install --system
But if I do so, subsequent pipenv runs are trying to create the virtualenv instead of using the system Python. In particular, I'm interested in using Pipenv scripts:
$ pipenv run postinstall
Creating a virtualenv for this project...
Is there a way to use the system Python interpreter for Pipenv scripts?