Moved from pip to pipx for both user and root

This commit is contained in:
Tobias Schmidl 2022-05-16 12:30:14 +00:00
parent e08dd57366
commit 5da23342e6
3 changed files with 14 additions and 7 deletions

View file

@ -12,7 +12,17 @@ TMPDIR=$(mktemp -u -p "$HOME" -d dotfiles.XXXXX) && \
git --git-dir="$HOME/.cfg/" --work-tree="$HOME" submodule update --init --remote --recursive --rebase)
rm -rf "$TMPDIR"
pip install --user -r https://gitlab.com/schtobia/bootstrap/raw/master/requirements.txt
pip install --user -r https://gitlab.com/schtobia/bootstrap/raw/master/requirements.txt &&
for package in \
glances \
kas \
pygments \
pylint \
ranger_fm \
watchdog;
do
pipx install $package
done
# vim related
nvim +PluginInstall +UpdateRemotePlugins +qall