fix python scripts
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -10,7 +10,7 @@ if not_installed "poetry"; then
|
||||
printf "Installing poetry...\n"
|
||||
|
||||
# Install poetry
|
||||
run https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py python3
|
||||
run https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py python
|
||||
|
||||
fi
|
||||
printf "poetry is installed\n"
|
||||
|
||||
Reference in New Issue
Block a user