pip - How would I confirm that a python package is ...
https://stackoverflow.com/questions/3964782421.09.2016 · I am writing an ansible playbook, and I would first like to install pew, and transition into that pew environment in order to install some other python libraries.. So, my playbook is going to look something like this... tasks: # task 1 - name: install pew if necessary command: pip install pew # task 2 - name: create new pew environment if necessary command: pew new devpi-server …