kennethreitz.org / Software / Pipenv

pipenv

Pipenv is a tool for managing Python dependencies. It is a wrapper around pip and virtualenv.

https://github.com/pypa/pipenv

Why Use Pipenv?

Key Features

Get Started with Pipenv

To get started with Pipenv, simply install it using pip:

$ pip install pipenv

After installation, you can create a new project, install dependencies, and start working in an isolated environment:

$ pipenv install requests
$ pipenv shell

Pipenv will handle the rest, from setting up the environment to locking your dependencies. Whether you are a seasoned Python developer or just getting started, Pipenv simplifies your workflow, allowing you to focus on what truly matters—building great software.