pipx for binaries
This commit is contained in:
parent
d9ca3e0b42
commit
c6c10fcaff
2 changed files with 11 additions and 11 deletions
10
bin/pipx-upgrade
Executable file
10
bin/pipx-upgrade
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env zsh
|
||||
local things_to_install=(ipython yt-dlp magic-wormhole litecli wakatime)
|
||||
|
||||
if [[ -x "$(command -v $things_to_install)" ]]; then
|
||||
pipx reinstall-all
|
||||
else
|
||||
for thing_to_install in $things_to_install; do
|
||||
pipx install $thing_to_install
|
||||
done
|
||||
fi
|
|
@ -1,12 +1,2 @@
|
|||
wheel
|
||||
ipython
|
||||
python-language-server
|
||||
requests
|
||||
pynvim
|
||||
youtube-dl
|
||||
black
|
||||
poetry
|
||||
magic-wormhole
|
||||
neovim-remote
|
||||
wakatime
|
||||
litecli
|
||||
pipx
|
||||
|
|
Loading…
Add table
Reference in a new issue