diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-17 09:13:11 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-17 09:13:11 +0100 |
commit | ee478f45b3576502f8e61df0129cf5564aadcbc0 (patch) | |
tree | 008ed0157aacd50e7f1c6f4a50daa0d743cf8cbf | |
parent | 9b32145fe85e277160d54a8c6411b578464e91f8 (diff) |
Updates the compile python script for Debian
-rwxr-xr-x | compile_python_debian.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compile_python_debian.sh b/compile_python_debian.sh index be9696c..ecff285 100755 --- a/compile_python_debian.sh +++ b/compile_python_debian.sh @@ -5,11 +5,11 @@ PYTHON_VERSION=$1 #echo "Updating system...." -#sudo apt update -#sudo apt upgrade -#sudo apt-get install -y make build-essential libssl-dev zlib1g-dev -#sudo apt-get install -y libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm -#sudo apt-get install -y libncurses5-dev libncursesw5-dev xz-utils tk-dev +sudo apt update +sudo apt upgrade +sudo apt-get install -y make build-essential libssl-dev zlib1g-dev +sudo apt-get install -y libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm +sudo apt-get install -y libncurses5-dev libncursesw5-dev xz-utils tk-dev cd $HOME/Downloads |