Changed default --user in pip instllaters

This commit is contained in:
Marcin Woźniak 2022-10-05 08:14:30 +02:00
parent e701f1bba0
commit c1da970a67

View File

@ -53,8 +53,10 @@ function install_gopls() {
function install_black() { function install_black() {
# Install black # Install black
pip install black pip install black --user
pip3 install black pip3 install black --user
}
function install_ansible() { function install_ansible() {
pip3 install --pre --user ansible ansible-lint ansible-core pip3 install --pre --user ansible ansible-lint ansible-core
} }