Skip to content

Commit

Permalink
update install_python.sh for python 3.11 (#1376)
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon authored Mar 4, 2024
1 parent c4b09da commit 009782a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion utility/install_os_gitlab.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Install OS dependencies for Docker image python:3.8 used in Gitlab CI
# Install OS dependencies for Docker image python used in Gitlab CI

echo "***********************************************"
echo "Apt-get update"
Expand Down
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 009782a

Please sign in to comment.