In this video I'm going to show you how to start using pipenv for your python projects.
Pipenv is a packaging tool which automatically creates and manages virtualenv and packages.
# To create a new virtual environment
$ mkdir pipenv-demo && cd pipenv-demo
$ pipenv shell
(venv) $ cat Pipfile
# To install a package and …