I'm using Ubuntu 14.04, with Python 3.4.3. I want to install the latest version of ansible-lint
that is supported on that Ubuntu version and with this Python version.
One of the dependencies of the ansible-lint
package is ansible
.
When I simply use pip3 install ansible-lint
I install for me a version of ansible
that is not supported - since if I run ansible-lint --version
I get the following error:
Ansible requires a minimum of Python2 version 2.6 or Python3 version 3.5. Current version: 3.4.3
.
So how can I make sure that pip3
install the correct version with the correct versions of the dependencies?