Remove automatic install of pipx incase installed another way

This commit is contained in:
Evie Litherland-Smith 2023-01-09 18:41:48 +00:00
parent e6c76b7798
commit 0d17286c6f

View file

@ -7,14 +7,6 @@ if [ ! -d $PACKER_DIR ]; then
fi fi
NVIM_DIR=$(dirname $(readlink -f $0)) NVIM_DIR=$(dirname $(readlink -f $0))
python3 -m venv "$NVIM_DIR/venv" /usr/bin/env python3 -m venv "$NVIM_DIR/venv"
$NVIM_DIR/venv/bin/python -m pip install -U pip setuptools wheel || exit 1 $NVIM_DIR/venv/bin/python -m pip install -U pip setuptools wheel || exit 1
$NVIM_DIR/venv/bin/python -m pip install -U pynvim $NVIM_DIR/venv/bin/python -m pip install -U pynvim
python3 -m pip install -U --user pipx || exit 1
python3 -m pipx ensurepath || exit 1
python3 -m pipx install pyright
python3 -m pipx install fortls
python3 -m pipx install black
python3 -m pipx install isort
python3 -m pipx install zimports