December 2019
Intermediate to advanced
368 pages
11h 10m
English
Pipenv is a tool that combines package manager with the virtual environments manager. The main goal is to make it easy for developers to set up a unique working environment for a particular project with all the necessary dependencies included.
It can be installed with PIP (the package installer for Python) using the following command:
$ pip install --user pipenv
The preceding command installs the pipenv tool into the user space to prevent it from breaking any system-wide packages.
To install all the dependencies and create a new virtual environment (if not present) for your project, change into the project's directory and run the installation process, as follows:
$ cd my_project_folder$ pipenv install <package>
This command creates ...
Read now
Unlock full access