12 lines
173 B
Bash
12 lines
173 B
Bash
#!/bin/bash
|
|
|
|
#check for update and cash them
|
|
sudo dnf check-update
|
|
|
|
# DNF reqs
|
|
sudo dnf install -y python3-devel python3-pip uv
|
|
|
|
#pip
|
|
python3 -m pip3 install --upgrade pip
|
|
|