linux BC LINXU install libssl
To install libssl on Linux, you can use the package manager specific to your distribution. Here are the commands for some popular package managers:
-
For Ubuntu/Debian-based distributions:
sudo apt-get update sudo apt-get install libssl-dev -
For CentOS/RHEL-based distributions:
sudo yum install openssl-devel -
For Fedora:
sudo dnf install openssl-devel -
For openSUSE:
sudo zypper install libopenssl-devel
Note that the package name may vary slightly depending on the distribution. After running the appropriate command, libssl should be installed on your Linux system
原文地址: https://www.cveoy.top/t/topic/h1w8 著作权归作者所有。请勿转载和采集!