centos 7 如何原始碼安裝python3 8

2021-10-04 01:56:35 字數 1457 閱讀 9800

#將安裝好的openssl 的openssl命令軟連到/usr/bin/openssl

ln -s /usr/local/openssl/include/openssl /usr/include/openssl

#軟鏈到公升級後的libssl.so

ln -s /usr/local/openssl/lib/libssl.so.1.1 /usr/local/lib64/libssl.so

ln -s /usr/local/openssl/lib/libcrypto.so.1.1 /usr/local/lib64/libcrypto.so

#將安裝好的openssl命令軟連到/usr/bin/openssl

ln -s /usr/local/openssl/bin/openssl /usr/bin/openssl

#寫入openssl庫檔案的搜尋路徑

echo "/usr/local/openssl/lib" >> /etc/ld.so.conf

#使修改後的/etc/ld.so.conf生效

ldconfig -v

openssl version
cd /dgm

tar -jxf python-3.8.2.tar.xz

cd python-3.8.2

#/usr/local/python3為安裝目錄

./configure --prefix=/usr/local/python3 --with-openssl=/usr/local/openssl

make && make install

ln -s /usr/local/python3/bin/python3 /usr/bin/python3

ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3

Centos7原始碼安裝Apache和PHP

安裝需要的依賴 yum y install gcc autoconf automake make pcre pcre devel openssl openssl devel pcre是正規表示式庫 openssl是安全通訊的庫 安裝apr和apr until apr是apache可移植執行時 apr...

Centos7原始碼安裝PHP

安裝依賴libxml2 devel 後期安裝時,如果不報錯也可以不用安裝 原始碼安裝步驟 wget c 2.解壓tar zxvf php 7.2.4.tar.gz 3.安裝編譯 configure prefix 安裝目錄 引數 configure prefix usr local php with ...

centos7 原始碼安裝 nginx php7

wget解壓php tar zxvf php 7.1.12.tar.gz安裝擴充套件包 這裡可以通過yum安裝,或者原始碼安裝。不一一舉例 編譯 這裡需要建立使用者,與使用者。我建立的是alienjun使用者與使用者組,根據自己實際情況建立 configure prefix usr local ph...