Pipenv: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
=External=
* https://pipenv.readthedocs.io/en/latest/
* https://pipenv.readthedocs.io/en/latest/
* https://github.com/pypa/pipenv
* https://realpython.com/pipenv-guide/
=Internal=
=Internal=
* [[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 [[#Python_Language#Environment|virtual environments]] and package management in a single tool.
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'>
pipenv run <some-command>
</syntaxhighlight>

Latest revision as of 04:31, 11 January 2022

External

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>