mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-13 00:30:40 +00:00
16 lines
345 B
Markdown
16 lines
345 B
Markdown
---
|
|
title: Using pip
|
|
|
|
---
|
|
|
|
{{< highlight Shell "linenos=table" >}}
|
|
# From PyPI as unprivilegd user
|
|
$ 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 >}}
|