How do you create a virtualenv for a specific python version using ansible. Is there a command in the ansible standard library?
I would like something like:
You can do it with the pip module and a specific virtualenv binary:
virtualenv
- pip: virtualenv=/path/to/venv virtualenv_command=/path/to/virtualenv3 ...