fix python scripts

This commit is contained in:
Andrejus
2020-02-26 17:21:41 +00:00
parent 6fd120a082
commit 78275b144e
3 changed files with 9 additions and 9 deletions

View File

@@ -1,16 +1,16 @@
#!/usr/bin/env bash
#
# After running this script:
# 1. python3 is installed
# 1. python is installed
#
# 1. python is installed
if not_installed "python3"; then
if not_installed "python"; then
printf "Installing python3...\n"
printf "Installing python...\n"
pyenv install -s 3.7.0
pyenv global 3.7.0
fi
printf "python3 is installed\n"
printf "python is installed\n"