Moved from pip to pipx for both user and root
This commit is contained in:
parent
e08dd57366
commit
5da23342e6
3 changed files with 14 additions and 7 deletions
|
@ -46,7 +46,7 @@ apt-get install -y nodejs
|
|||
# shellcheck disable=SC2086
|
||||
curl $CURLOPT https://bootstrap.pypa.io/get-pip.py | python3
|
||||
|
||||
pip install ranger-fm
|
||||
pip install pipx
|
||||
|
||||
[ ! -x "$(which exa)" ] && cargo install --root /usr/local --git https://github.com/ogham/exa --tag v0.10.1
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
pygments
|
||||
jedi
|
||||
pipx
|
||||
https://github.com/shkumagai/pygments-style-solarized/archive/refs/tags/0.2.0.tar.gz
|
||||
pylama
|
||||
pylint
|
||||
pynvim
|
||||
ranger_fm
|
||||
watchdog
|
||||
|
|
Loading…
Reference in a new issue