linux 域名install libssl
To install libssl on Linux and its derivatives, you can use the package manager specific to your Linux distribution.
For example, on Ubuntu or Debian, you can use the apt-get command:
sudo apt-get install libssl-dev
On CentOS or Fedora, you can use the yum command:
sudo yum install openssl-devel
On Arch Linux, you can use the pacman command:
sudo pacman -S openssl
These commands will install the necessary libssl package and its development headers, which are required to compile and link programs that use libssl
原文地址: https://www.cveoy.top/t/topic/h1w4 著作权归作者所有。请勿转载和采集!