源碼安裝python3
python官網:https://www.python.org/
下載python3的包
裝好yum源和epel源
解壓安裝
[root@localhost a]# ls
Python-3.6.0.tgz
[root@localhost a]# tar -xf Python-3.6.0.tgz -C /usr/local/src/
[root@localhost a]# cd /usr/local/src/
[root@localhost src]# ls
Python-3.6.0
[root@localhost src]# cd Python-3.6.0/
[root@localhost Python-3.6.0]# sed -ri ‘s/^#(_ssl)/\1/p‘ Modules/Setup.dist
[root@localhost Python-3.6.0]# sed -ri ‘s/^#([\t]-DUSE)/\1/p‘ Modules/Setup.dist
[root@localhost Python-3.6.0]# sed -ri ‘s/^#([\t]-L\$(SSL))/\1/p‘ Modules/Setup.dist
[root@localhost Python-3.6.0]# yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel gcc
[root@localhost Python-3.6.3]# ./configure --enable-shared --enable-optimizations
[root@localhost Python-3.6.3]# make -j 2 && make install
配置共享庫文件
- 先找到這個文件的安裝路徑
-
為所有用戶設置共享庫目錄
用 vi 編輯器打開配置文件
/etc/profile
vi /etc/profile
?
在文件末尾寫上如下內容:
python3.6共享目錄
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
測試python3
輸入 exit()
即可退出 python3.6
以上就是安裝python的過程了,大家可以試一試,有問題即使給我留言,謝謝大家!!!!
源碼安裝python3