Skip to content

Commit

Permalink
feat: Update python installation script in order to accept python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Mar 4, 2024
1 parent c4b09da commit 474756f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utility/install_python.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env bash

echo "***********************************************"
echo "Installing Python 3.8"
echo "Installing Python 3.11"
echo "***********************************************"
add-apt-repository -y ppa:deadsnakes/ppa
apt-get -y update
apt-get -y install python3.8 python3.8-dev python3.8-venv
curl https://bootstrap.pypa.io/get-pip.py | sudo -H python3.8
apt-get -y install python3.11 python3.11-dev python3.11-venv
curl https://bootstrap.pypa.io/get-pip.py | sudo -H python3.11

0 comments on commit 474756f

Please sign in to comment.