ansible-doctor/docs/content/setup/pip.md

16 lines
405 B
Markdown
Raw Normal View History

2020-01-16 11:27:46 +01:00
---
title: Using pip
---
```Shell
2020-06-02 22:17:46 +02:00
# From PyPI as unprivileged user
$ pip install ansible-doctor[ansible-core] --user
2020-01-16 11:27:46 +01:00
# .. or as root
$ sudo pip install ansible-doctor[ansible-core]
2020-01-16 11:27:46 +01:00
# From Wheel file
# Please check first whether a newer version is available.
$ pip install https://github.com/thegeeklab/ansible-doctor/releases/download/v3.1.4/ansible_doctor-3.1.4-py2.py3-none-any.whl[ansible-core]
```