PIPENV(1) | pipenv | PIPENV(1) |
Pipenv uses a set of commands to manage your Project's dependencies and custom scripts. It replaces the use of Makefile, direct calls to pip and python -m venv or virtualenv. to create virtual environments and install packages in them. Pipenv uses two files to do this: Pipfile and Pipfile.lock (which will look familiar if you are used to packages manager like yarn or npm).
The main commands are:
Will create a virtual env and install dependencies (if it does not exist already) The dependencies will be installed inside.
Will add the package in version 0.2 to the virtual environment and to Pipfile and Pipfile.lock
These are intended to replace $ pip install usage, as well as manual virtualenv management.
Python Packaging Authority
2020. A project founded by Kenneth Reitz and maintained by <a href="https://www.pypa.io/en/latest/">Python Packaging Authority (PyPA).</a>
December 19, 2022 | 2022.12.19 |