Skip to content

Instantly share code, notes, and snippets.

View AmadeusWizard's full-sized avatar
🏠
Working from home

.beyond.infinity AmadeusWizard

🏠
Working from home
  • .beyond.infinity
  • Heart of Europe
  • 15:46 (UTC +02:00)
View GitHub Profile
@BTabaku
BTabaku / python_upgrade_suse15.sh
Last active March 20, 2024 13:09
Install/ upgrade python to python3.9 on SUSE 15 linux
#!/bin/bash
sudo zypper refresh
# setup developer tools first if you dont have them already
sudo zypper install gcc zlib-devel bzip2 libbz2-devel libffi-devel libopenssl-devel readline-devel sqlite3 sqlite3-devel xz xz-devel
# Download and install OpenSSL
wget https://www.openssl.org/source/openssl-1.1.1l.tar.gz
tar xvf openssl-1.1.1l.tar.gz