A knowledge base of things that make the Python developer experience pythonic.
Integrate pyenv with pipenv to install the Pipfile pinned version of Python or use miniconda to install the pinned version of Python then activate the conda environment before running pipenv install so that pipenv finds the correct version of Python. Alternatively, use Poetry for managing both dependencies and environments.
conda create python=3.8 --name pydx
conda activate pydx
pip install -r requirements/assumed.txt
pipenv install --dev -r requirements/development.txt
pipenv shell