10 lines
214 B
Bash
10 lines
214 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
dnf install -y python3.12 python3.12-devel python3.12-pip
|
||
|
|
||
|
update-alternatives --set python3 /usr/bin/python3.12
|
||
|
|
||
|
python3 -m pip install --upgrade pip
|
||
|
|
||
|
python3 -m pip install --upgrade ansible
|