Difference between revisions of "HowTo Use Python Virtual Environments"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "Linux ``` apt install python3 python3-venv python3 -m venv venv source venv/bin/activate pip install ansible-base ansible -h ansible-playbook -h ``` Windows ``` You can do th...")
 
(No difference)

Latest revision as of 20:10, 28 October 2021

Linux

apt install python3 python3-venv
python3 -m venv venv
source venv/bin/activate
pip install ansible-base
ansible -h
ansible-playbook -h

Windows

You can do this on windows