Skip to content

Commit 2f96593

Browse files
Merge pull request #444 from emmcauley/feature/python-linux-prereq-updates-#432
#432 proposing use of python3 metapackage on Debian-alike systems ins…
2 parents b2f9528 + 0fb1bc6 commit 2f96593

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

prereqs_linux.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,16 @@ else
1313
sudo apt-get install g++
1414
fi
1515

16-
# checking for python 3.6
16+
# checking for Python 3
1717
echo "Checking for python3 installation"
1818
if command -v python3 &>/dev/null; then
1919
echo "Python 3 already installed"
2020
elif command python --version | grep -q 'Python 3'; then
2121
echo "Python 3 already installed"
2222
else
23-
echo "Installing Python 3 is not installed"
24-
sudo add-apt-repository ppa:deadsnakes/ppa
23+
echo "Installing Python 3 is not installed"
2524
sudo apt-get update
26-
sudo apt-get install python3.6
25+
sudo apt-get install python3
2726
fi
2827

2928
# checking for poetry

0 commit comments

Comments
 (0)