當前位置:編程學習大全網 - 編程軟體 - linux系統如何安裝pythonlinux安裝python環境

linux系統如何安裝pythonlinux安裝python環境

linux怎麽安裝python3-pyqt5?

打開終端sudoapt-getinstallpython3-pyqt*這樣會安裝所有pyqt所需的組件

Linux服務器安裝ubuntu20.0安裝python3?

今天記錄壹下Linux安裝python3

其實發現Linux系統自帶python2,python命令是python2,如果安裝python3,則需要使用python3命令運行程序。

python循環和if判斷結束是根據縮進(4個縮進)來的

如何在linux系統中安裝python?

linux系統中安裝python包括以下三個步驟:

1、下載源代碼

2、安裝

$tar_jxvfPython-2.5.2.tar.bz2

$cdPython-2.5.2

$./configure

$make

$makeinstall

3、測試

在命令行下輸入python,出現python解釋器即表示已經正確安裝。

在suse10或rhel5(es5)下系統默認已經裝了python但版本是2.4.x;本次安裝後在shell中輸入

#python

會發現顯示結果:

#python

Python2.4.3(#1,Dec112006,11:38:52)

onlinux2

Type“help”,“copyright”,“credits”or“license”formoreinformation.

>>>

版本還是2.4.x的

解決辦法:

#cd/usr/bin

#ll|greppython//查看該目錄下python

#rm-rfpython

#ln-sPREFIX/Python-2.5.2/python./python//PREFIX為妳解壓python的目錄

#python

#python

Python2.5.2(#1,Dec112006,11:38:52)

onlinux2

Type“help”,“copyright”,“credits”or“license”formoreinformation.

>>>

安裝測試完畢。

  • 上一篇:聲卡驅動有什麽用
  • 下一篇:好用的低代碼平臺有哪些?
  • copyright 2024編程學習大全網