linux install libssl
To install libssl on Linux, you can use the package manager specific to your distribution. Here are the commands for some popular Linux distributions:
For Ubuntu or Debian-based distributions:
sudo apt-get update
sudo apt-get install libssl-dev
For CentOS or Red Hat-based distributions:
sudo yum install openssl-devel
For Fedora:
sudo dnf install openssl-devel
For Arch Linux:
sudo pacman -S openssl
These commands will install the libssl library and its development files on your Linux system
原文地址: https://www.cveoy.top/t/topic/h1w6 著作权归作者所有。请勿转载和采集!