Pipenv: Difference between revisions
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
* [[Python Package Managers#Package_Managers|Python Package Managers]] | * [[Python Package Managers#Package_Managers|Python Package Managers]] | ||
=Overview= | =Overview= | ||
Pipenv is another Python package management tool, merging [[ | Pipenv is another Python package management tool, merging [[Python_Language#Environment|virtual environments]] and package management in a single tool. To run a Python program or a Python-driven tool from an environment managed by Pipenv, execute it prefixed with <code>pipenv</code>: | ||
<syntaxhighlight lang='bash'> | <syntaxhighlight lang='bash'> | ||
pipenv run <some-command> | pipenv run <some-command> | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 04:31, 11 January 2022
External
- https://pipenv.readthedocs.io/en/latest/
- https://github.com/pypa/pipenv
- https://realpython.com/pipenv-guide/
Internal
Overview
Pipenv is another Python package management tool, merging virtual environments and package management in a single tool. To run a Python program or a Python-driven tool from an environment managed by Pipenv, execute it prefixed with pipenv
:
pipenv run <some-command>