基礎(chǔ)環(huán)境:linux centos7
1、下載python3
執(zhí)行命令:wget?https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz
2、創(chuàng)建文件夾
執(zhí)行命令:mkdir -p /usr/local/python3
3、解壓壓縮包(解壓到創(chuàng)建的目錄):
執(zhí)行命令:tar -zxvf Python-3.6.1.tgz
4请琳、進入解壓目錄:
執(zhí)行命令:./configure --prefix=/usr/local/python3
5、編譯安裝:
執(zhí)行命令:make && make install
6、建立軟連接:
執(zhí)行命令:ln -s /usr/local/python3/bin/python3 /usr/bin/python3
7围苫、配置環(huán)境變量:
執(zhí)行命令: vim ~/.bash_profile
添加內(nèi)容如下:
export PATH=$PATH:$HOME/bin:/usr/local/python3/bin
8、使文件生效:
執(zhí)行命令:source ~/.bash_profile
9撤师、查詢是否安裝成功:
執(zhí)行命令:python3 -V