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

21 lines
529 B
Markdown
Raw Normal View History

2020-01-16 10:27:46 +00:00
---
title: Using pip
---
2020-06-03 14:22:56 +00:00
<!-- prettier-ignore-start -->
2020-06-02 20:17:46 +00:00
<!-- markdownlint-disable -->
<!-- spellchecker-disable -->
2020-01-16 10:27:46 +00:00
{{< highlight Shell "linenos=table" >}}
2020-06-02 20:17:46 +00:00
# From PyPI as unprivileged user
2020-01-16 10:27:46 +00:00
$ pip install ansible-doctor --user
# .. or as root
$ sudo pip install ansible-doctor
# From Wheel file
2020-09-27 12:21:54 +00:00
$ pip install https://github.com/thegeeklab/ansible-doctor/releases/download/v0.1.1/ansible_doctor-0.1.1-py2.py3-none-any.whl
2020-01-16 10:27:46 +00:00
{{< /highlight >}}
<!-- spellchecker-enable -->
<!-- markdownlint-restore -->
2020-06-03 14:22:56 +00:00
<!-- prettier-ignore-end -->