pipenv and pyenv

What’s pyenv?

pyenv lets you easily switch between multiple versions of Python

It’s like nvm but for Python ;-)

Install pyenv.

Terminal window
brew install pyenv

How to use it?

Install a specific Python version:

Terminal window
pyenv install 3.7.0

Activate a specific version:

Terminal window
pyenv shell 3.7.0

List all installed versions.

Terminal window
pyenv versions

You can find all the commands here.

What’s pipenv?

It automatically creates and manages a virtualenv for your projects, as well as adds/removes packages from your Pipfile as you install/uninstall packages. It also generates the ever-important Pipfile.lock, which is used to produce deterministic builds.

Installation.

Terminal window
brew install pipenv

Enable shell completion.

How to use it?

Go to your project and create virtualenv.

Terminal window
pipenv

You can also specify Python version.

Terminal window
pipenv --python 3.7.1

You can create .python-version file inside your project with a version number, like 3.7.1. Specified Python version will be activated automatically when you enter to the project directory. It will also automatically install the specified version if pyenv is installed.

If you want to install package, use pipenv instead of pip.

Terminal window
pipenv install django

It will add a package to Pipfile file and Pipfile.lock. If you want to install all packages from Pipfile, use pipenv install command.

If you want to install a package required only for development, add --dev flag.

Terminal window
pipenv install pytest --dev

pipenv can also load environment variables from .env files.

  1. Create .env file with your variables.
  2. Run pipenv shell.

You can scan your dependency graph for known security vulnerabilities:

Terminal window
pipenv check

More information here.