HowTo Use Python Virtual Environments

From UVOO Tech Wiki
Revision as of 20:10, 28 October 2021 by Busk (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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