程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

deepin python 安裝指引

編輯:Python
  1. 下載python3.8源碼
​$ wget https://www.python.org/ftp/python/3.8.5/Python-3.8.5.tgz

2.安裝依賴

$ sudo apt-get install gcc g++ make zlib* libffi-dev openssl libssl-dev
  1. 編譯安裝
$ tar -xf Python-3.8.5.tgz
$ cd Python-3.8.5
$ ./configure --prefix=/opt/python3.8 --with-ssl
$ make -j
$ sudo make install
$ sudo rm -rf /usr/bin/lsb_release
  1. 搭建python使用環境
$ cd /usr/bin
$ sudo rm python python3
$ sudo ln -s /opt/python3.8/bin/python3.8 python
$ sudo ln -s /opt/python3.8/bin/python3.8 python3
  1. 升級安裝pip3
$ sudo apt-get install python3-setuptools python3-pip -y
$ sudo pip3 install --upgrade pip

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved