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

19 lines
465 B
Markdown
Raw Normal View History

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