mirror of
https://github.com/SinTan1729/random.git
synced 2025-04-11 05:36:04 -05:00
chg: Use uv instead of pipx
This commit is contained in:
parent
f4c3512f4d
commit
778acd9c26
2 changed files with 4 additions and 4 deletions
|
@ -21,6 +21,6 @@ command -v dnf &> /dev/null && dnf list installed > $DIR/dnf
|
|||
# list and save pip packages
|
||||
command -v pip &> /dev/null && pip list | awk '{print $1}' | tail -n +3 > $DIR/pip
|
||||
|
||||
# list and save pipx packages
|
||||
command -v pipx &> /dev/null && pipx list | grep package | awk '{print $2}' > $DIR/pipx
|
||||
# list and save uv packages
|
||||
command -v uv &> /dev/null && uv tool list | grep -vE '^-.*' | awk '{print $1}' > $DIR/uv
|
||||
|
||||
|
|
|
@ -23,6 +23,6 @@ command -v dnf &> /dev/null && dnf list installed | awk '{print $1}' | tail -n +
|
|||
# list and save pip packages
|
||||
command -v pip &> /dev/null && pip list | awk '{print $1}' | tail -n +3 > $DIR/pip
|
||||
|
||||
# list and save pipx packages
|
||||
command -v pipx &> /dev/null && pipx list | grep package | awk '{print $2}' > $DIR/pipx
|
||||
# list and save uv packages
|
||||
command -v uv &> /dev/null && uv tool list | grep -vE '^-.*' | awk '{print $1}' > $DIR/uv
|
||||
|
||||
|
|
Loading…
Reference in a new issue