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 -->
|
2020-06-07 14:29:44 +00:00
|
|
|
<!-- 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 >}}
|
2020-06-07 14:29:44 +00:00
|
|
|
<!-- spellchecker-enable -->
|
2020-06-03 13:38:00 +00:00
|
|
|
<!-- markdownlint-restore -->
|
2020-06-03 14:22:56 +00:00
|
|
|
<!-- prettier-ignore-end -->
|