mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-05 04:40:42 +00:00
21 lines
529 B
Markdown
21 lines
529 B
Markdown
---
|
|
title: Using pip
|
|
---
|
|
|
|
<!-- prettier-ignore-start -->
|
|
<!-- markdownlint-disable -->
|
|
<!-- spellchecker-disable -->
|
|
{{< highlight Shell "linenos=table" >}}
|
|
# From PyPI as unprivileged user
|
|
$ pip install ansible-doctor --user
|
|
|
|
# .. or as root
|
|
$ sudo pip install ansible-doctor
|
|
|
|
# From Wheel file
|
|
$ pip install https://github.com/thegeeklab/ansible-doctor/releases/download/v0.1.1/ansible_doctor-0.1.1-py2.py3-none-any.whl
|
|
{{< /highlight >}}
|
|
<!-- spellchecker-enable -->
|
|
<!-- markdownlint-restore -->
|
|
<!-- prettier-ignore-end -->
|