1) ในการติดตั้ง Python 2 เวอร์ชั่นบน Ubuntu 18.04 ให้เปิด terminal และป้อน:
sudo apt install python-minimal
หรือ
sudo apt install python2.7
ตรวจสอบเวอร์ชั่น:
python --version
2) หากยังคงรายการpython 3+ ที่ปรับปรุงแล้วของตัวเลือก Python เพื่อทำการสลับระหว่างเวอร์ชันของ python ใด ๆ ก็คือให้รัน:
update-alternatives --config python
ตัวอย่าง:
There are 2 choices for the alternative python (providing /usr/bin/python).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/python3.5 2 auto mode
1 /usr/bin/python2.7 1 manual mode
2 /usr/bin/python3.5 2 manual mode
Press <enter> to keep the current choice[*], or type selection number: 1
update-alternatives: using /usr/bin/python2.7 to provide /usr/bin/python (python) in manual mode
และเลือกรุ่นที่เหมาะสมโดยใช้จำนวนเต็ม selction ดังที่แสดงด้านบน
3) ถ้าคุณเห็น: ปรับปรุงทางเลือก: ข้อผิดพลาด: ทางเลือกสำหรับหลามไม่มี วิ่ง:
ls /usr/bin/python*
ตัวอย่างผลลัพธ์:
/usr/bin/python /usr/bin/python2 /usr/bin/python2.7 /usr/bin/python3 /usr/bin/python3.5
ถัดไปอัปเดตรายการทางเลือก Python สำหรับแต่ละเวอร์ชันที่คุณต้องการใช้กับลำดับความสำคัญ 1 และ 2:
update-alternatives --install /usr/bin/python python /usr/bin/python3.5 1
update-alternatives --install /usr/bin/python python /usr/bin/python2.7 2
จากนั้นเรียกใช้อีกครั้งupdate-alternatives --config python
และเลือกรุ่นที่เหมาะสม ..