2020-01-16 10:27:46 +00:00
|
|
|
---
|
|
|
|
title: Using pip
|
|
|
|
---
|
|
|
|
|
2022-02-21 20:38:47 +00:00
|
|
|
```Shell
|
2020-06-02 20:17:46 +00:00
|
|
|
# From PyPI as unprivileged user
|
2024-01-10 07:32:57 +00:00
|
|
|
$ pip install ansible-doctor[ansible-core] --user
|
2020-01-16 10:27:46 +00:00
|
|
|
|
|
|
|
# .. or as root
|
2024-01-10 07:32:57 +00:00
|
|
|
$ sudo pip install ansible-doctor[ansible-core]
|
2020-01-16 10:27:46 +00:00
|
|
|
|
|
|
|
# From Wheel file
|
2024-01-10 07:32:57 +00:00
|
|
|
# Please check first whether a newer version is available.
|
|
|
|
$ pip install https://github.com/thegeeklab/ansible-doctor/releases/download/v3.1.4/ansible_doctor-3.1.4-py2.py3-none-any.whl[ansible-core]
|
2022-02-21 20:38:47 +00:00
|
|
|
```
|