I want to execute python setup.py develop command inside of virtualenv using ansible.
How to do it?
Probably could be something like this:
`
- name: egg
shell: “python setup.py develop”
`
But I need to execute it inside of virtualenv. How can I do it?