We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to install python 3.5 using the python_version variable from the playbook vars.
python_version
--- - hosts: all sudo: yes user: root roles: - Stouts.python vars: python_version: [3.5, ] python_install: [virtualenvwrapper, ]
But it seems that it doesn't install the python 3.5 when I run it.
... TASK: [Stouts.python | Install python] **************************************** ok: [000.000.000.00] => (item=2.7) ok: [000.000.000.00] => (item=3.4) TASK: [Stouts.python | Install python-dev] ************************************ ok: [000.000.000.00] => (item=2.7) ok: [000.000.000.00] => (item=3.4) ...
I have to manually insert the 3.5 to the default/main.yml to install it.
3.5
default/main.yml
... TASK: [Stouts.python | Install python] **************************************** ok: [000.000.000.00] => (item=2.7) ok: [000.000.000.00] => (item=3.4) changed: [000.000.000.00] => (item=3.5) TASK: [Stouts.python | Install python-dev] ************************************ ok: [000.000.000.00] => (item=2.7) ok: [000.000.000.00] => (item=3.4) changed: [000.000.000.00] => (item=3.5) ...
The text was updated successfully, but these errors were encountered:
@benigls I know this is late, but did you try python_versions (note the 's')?
python_versions
Sorry, something went wrong.
@benigls Have you tried the following?
vars: python_versions: [3.5] python_install: [virtualenvwrapper]
No branches or pull requests
I'm trying to install python 3.5 using the
python_version
variable from the playbook vars.But it seems that it doesn't install the python 3.5 when I run it.
I have to manually insert the
3.5
to thedefault/main.yml
to install it.The text was updated successfully, but these errors were encountered: