pipx for binaries

This commit is contained in:
zendesk-acicchetti 2022-03-07 10:44:04 -05:00
parent d9ca3e0b42
commit c6c10fcaff
2 changed files with 11 additions and 11 deletions

10
bin/pipx-upgrade Executable file
View 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

View file

@ -1,12 +1,2 @@
wheel
ipython
python-language-server
requests
pynvim
youtube-dl
black
poetry
magic-wormhole
neovim-remote
wakatime
litecli
pipx