Skip to content

Instantly share code, notes, and snippets.

@DPS0340
Created February 3, 2023 16:40
Show Gist options
  • Select an option

  • Save DPS0340/5a59a83f0515a658bf16d18b958baff5 to your computer and use it in GitHub Desktop.

Select an option

Save DPS0340/5a59a83f0515a658bf16d18b958baff5 to your computer and use it in GitHub Desktop.
install openssl 1.1.1 on ubuntu 22.04 arm64
# download binary openssl packages from Impish builds
wget http://ports.ubuntu.com/pool/main/o/openssl/openssl_1.1.1f-1ubuntu2_arm64.deb
wget http://ports.ubuntu.com/pool/main/o/openssl/libssl-dev_1.1.1f-1ubuntu2_arm64.deb
wget http://ports.ubuntu.com/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_arm64.deb
# install downloaded binary packages
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_arm64.deb
sudo dpkg -i libssl-dev_1.1.1f-1ubuntu2_arm64.deb
sudo dpkg -i openssl_1.1.1f-1ubuntu2_arm64.deb
@ja8zyjits
Copy link
Copy Markdown

It works to install python2.7 on arm based ubuntu 24 LTS

@1eedaegon
Copy link
Copy Markdown

Thanks :)

@nubocode
Copy link
Copy Markdown

Thanks, it worked for me with amd64 too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment