Skip to content

Commit

Permalink
fix: Add missing Ubuntu package (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
mml5bg authored Oct 9, 2023
1 parent 27cbfdc commit bbd122c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/install-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo "### Installing python version 3 ###"
echo "#######################################################"
PYTHON_VERSION=$(cat AppManifest.json | jq .[].dependencies.python.version | tr -d '"')

sudo apt-get update && apt-get install -y python3-distutils python$PYTHON_VERSION
sudo apt-get update && apt-get install -y python3-distutils python$PYTHON_VERSION python3-dev
curl -fsSL https://bootstrap.pypa.io/get-pip.py | sudo python$PYTHON_VERSION

sudo update-alternatives --install /usr/bin/python python /usr/bin/python$PYTHON_VERSION 10
Expand Down

0 comments on commit bbd122c

Please sign in to comment.