mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add pip module documentation
This commit is contained in:
parent
10387cb19c
commit
2f9e3d141e
1 changed files with 32 additions and 0 deletions
|
@ -494,6 +494,38 @@ from /usr/bin/ansible::
|
|||
|
||||
.. postgresql_db:
|
||||
|
||||
|
||||
.. _pip:
|
||||
|
||||
pip
|
||||
```
|
||||
|
||||
Manages Python library dependencies.
|
||||
|
||||
+--------------------+----------+---------+----------------------------------------------------------------------------+
|
||||
| parameter | required | default | comments |
|
||||
+====================+==========+=========+============================================================================+
|
||||
| name | no | | The name of a Python library to install |
|
||||
+--------------------+----------+---------+----------------------------------------------------------------------------+
|
||||
| version | no | | The version number to install of the Python library specified in the |
|
||||
| | | | 'name' parameter |
|
||||
+--------------------+----------+---------+----------------------------------------------------------------------------+
|
||||
| requirements | no | | The path to a pip requirements file |
|
||||
+--------------------+----------+---------+----------------------------------------------------------------------------+
|
||||
| virtualenv | no | | An optional path to a virtualenv directory to install into |
|
||||
+--------------------+----------+---------+----------------------------------------------------------------------------+
|
||||
| state | no | present | 'present', 'absent' or 'latest' |
|
||||
+--------------------+----------+---------+----------------------------------------------------------------------------+
|
||||
|
||||
Examples::
|
||||
|
||||
pip name=flask
|
||||
pip name=flask version=0.8
|
||||
pip name=flask virtualenv=/srv/webapps/my_app/venv
|
||||
pip requirements=/srv/webapps/my_app/src/requirements.txt
|
||||
pip requirements=/srv/webapps/my_app/src/requirements.txt virtualenv=/srv/webapps/my_app/venv
|
||||
|
||||
|
||||
postgresql_db
|
||||
`````````````
|
||||
|
||||
|
|
Loading…
Reference in a new issue