0:00 / 0:00

15 seconds

15 seconds

Python Virtual Environments

3 years ago
17

Quick overview of Python virtual environments.

Commands you could use (sorry if you don't have podman yet):

podman run -it --rm docker.io/library/ubuntu /bin/bash
apt update
apt install python3 python3-pip python3.8-venv
useradd -ms /bin/bash chipotle
su - chipotle
python3 -m venv dinner
cd dinner && source bin/activate
python3 -m pip install <something_awesome>

https://superserverhero.com

0 Comments

  • 0/2000