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

15 lines
304 B
Markdown
Raw Normal View History

2020-01-16 11:27:46 +01:00
---
title: Using pip
---
```Shell
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
2020-09-27 14:21:54 +02:00
$ pip install https://github.com/thegeeklab/ansible-doctor/releases/download/v0.1.1/ansible_doctor-0.1.1-py2.py3-none-any.whl
```