2020-01-14 23:15:13 +00:00
---
title: Using pip
---
2020-12-28 17:05:00 +00:00
ansible-later requires a working Ansible installation. If Ansible is not already installed on your system you can to install `ansible-later` with one of the optional dependency groups `ansible` or `ansible-base` .
2020-06-03 14:23:46 +00:00
<!-- prettier - ignore - start -->
<!-- markdownlint - disable -->
2020-06-07 14:39:14 +00:00
<!-- spellchecker - disable -->
2020-01-14 23:15:13 +00:00
{{< highlight Shell " linenos = table" > }}
2020-06-03 14:23:46 +00:00
# From pip as user
2020-12-28 17:05:00 +00:00
pip install ansible-later[ansible] --user # or ansible-later[ansible-base]
2020-01-14 23:15:13 +00:00
# .. or as root
2020-12-28 17:05:00 +00:00
sudo pip install ansible-later[ansible] # or ansible-later[ansible-base]
2020-01-14 23:15:13 +00:00
{{< / highlight > }}
2020-06-07 14:39:14 +00:00
<!-- spellchecker - enable -->
2020-06-03 14:23:46 +00:00
<!-- markdownlint - restore -->
<!-- prettier - ignore - end -->