We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b2f9528 + 0fb1bc6 commit 2f96593Copy full SHA for 2f96593
1 file changed
prereqs_linux.sh
@@ -13,17 +13,16 @@ else
13
sudo apt-get install g++
14
fi
15
16
-# checking for python 3.6
+# checking for Python 3
17
echo "Checking for python3 installation"
18
if command -v python3 &>/dev/null; then
19
echo "Python 3 already installed"
20
elif command python --version | grep -q 'Python 3'; then
21
22
else
23
- echo "Installing Python 3 is not installed"
24
- sudo add-apt-repository ppa:deadsnakes/ppa
+ echo "Installing Python 3 is not installed"
25
sudo apt-get update
26
- sudo apt-get install python3.6
+ sudo apt-get install python3
27
28
29
# checking for poetry
0 commit comments