Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 371 Bytes

python.md

File metadata and controls

26 lines (20 loc) · 371 Bytes

Acquiring Python and needed libraries

Ubuntu (apt-based distros)

Run:

apt update
apt install python3 python3-yaml

RHEL (dnf-based distros)

Run:

dnf update
dnf install python38 python38-pyyaml
alternatives --set python /usr/bin/python38

Arch (pacman/aur distros)

Run:

pacman -Syu
pacman -S python python-pyaml