1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Scripts/setup-python-dev-tools.sh

13 lines
247 B

#!/bin/bash
ask_install() {
packages="$@"
read -p "Install $packages? [y/n] " -n 1 -r ; echo
[[ "$REPLY" = y ]] && pip3 install $packages
}
ask_install jedi-language-server
ask_install pycodestyle
ask_install pylint
ask_install mypy