pipenv

Python dependency management and virtual environment tool

brewmacoslinux
Try with needOr install directly
Source

About

Python dependency management tool

Commands

pipenv

Examples

create a new project with python and manage dependencies$ pipenv --python 3.11
install a package and add it to project dependencies$ pipenv install requests
install all dependencies from existing project$ pipenv install
run a python script in the project environment$ pipenv run python script.py
activate the virtual environment shell$ pipenv shell