linux系統安裝python3.6
如果系統已經安裝了python2.x,不需要解除安裝,直接安python3因為可能有程式依賴目前的python2環境,比如yum。
- 安裝依賴環境
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
如果安裝依賴不成功,則執行如下命令安裝依賴
sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev
- 下載python3的包
wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz
官網:https://www.python.org/downloads/
- 解壓並拷貝到/usr/local目錄下
tar -zxvf Python-3.6.1.tgz -C /usr/local
- 編譯安裝
cd Python-3.6.1
./configure --prefix=/usr/local/python3
make
make install
- 建立python3的軟鏈
ln -s /usr/local/python3/bin/python3 /usr/bin/python3
- 將/usr/local/python3/bin加入PATH
vim ~/.bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:/usr/local/python3/bin
export PATH
- 生效環境變數配置
source ~/.bash_profile
- 檢查Python3及pip3是否正常可用
~ python3
Python 3.6.1 (default, Oct 26 2020, 19:14:50)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
相關文章
- 在linux環境下安裝python3.6LinuxPython
- Linux系統安裝Linux
- Linux系統安裝01-centos7系統安裝LinuxCentOS
- Linux系統安裝——Centos 7.6安裝LinuxCentOS
- pycharm如何安裝python3.6PyCharmPython
- Linux系統安裝VNCLinuxVNC
- LINUX系統的安裝Linux
- linux系統安裝yumLinux
- linux系統安裝nginxLinuxNginx
- Linux下Python3.6的安裝及避坑指南LinuxPython
- Linux系統安裝,教你安裝一個屬於自己的Linux系統Linux
- 如何解除安裝python3.6Python
- CentOS 7.4 下安裝Python3.6CentOSPython
- 國產Linux系統UOS安裝Linux
- Linux系統安裝redis教程。LinuxRedis
- Linux系統快速安裝JDKLinuxJDK
- Linux系統安裝詳解Linux
- Linux系統中安裝pipLinux
- 怎樣安裝Linux系統?Linux基礎教程之小白入門Linux系統安裝教程Linux
- Ubuntu中安裝python3.6踩坑UbuntuPython
- opencv python3.6安裝和測試OpenCVPython
- Linux系統安裝Redis服務LinuxRedis
- VirtualBox下安裝Linux系統Linux
- 紅旗Linux系統安裝教程Linux
- RUST 在linux 系統的安裝RustLinux
- 全新 Kali Linux 系統安裝指南Linux
- Linux系統安裝(CentOS6)LinuxCentOS
- Win Linux 雙系統安裝指南Linux
- linux和windows雙系統安裝LinuxWindows
- linux中安裝JDK linux中安裝Tomcat linux中安裝Mysql 及故障解析 linux系統安裝redisLinuxJDKTomcatMySqlRedis
- Win10怎麼安裝linux雙系統?win10安裝linux雙系統教程Win10Linux
- Linux系統(二)軟體的安裝與解除安裝Linux
- Linux 筆記分享二:Linux 系統安裝Linux筆記
- Linux中如何安裝RabbitMQ?在linux系統中安裝Rabbitmq的方法LinuxMQ
- Linux系統下載mysql與安裝LinuxMySql
- Linux系統Tomcat安裝與配置。LinuxTomcat
- Linux系統安裝和使用Kafka教程。LinuxKafka
- Linux系統安裝MySQL詳細教程LinuxMySql