安裝 Python IDLE (Linux)
Python IDLE (Integrated Development and Learning Environment) 是一個官方的輕量級 Python IDE.在不同的 Linux 的發布版本中,其安裝命令有所不同,具體如下:
1. CentOS / Fedora / RHEL(Red Hat Enterprise Linux)
對於這些 Linux 發布版本,IDLE 工具包含在 python 工具包 python-tools 或 python3-tools 中.其具體的安裝命令如下:
1.1 安裝 IDLE (Python 2)
$ sudo yum install python-tools
or
$ sudo dnf install python-tools
1.2 安裝 IDLE (Python 3)
$ sudo yum install python3-tools
or
$ sudo dnf install python3-tools
2. Debian / Ubuntu Linux
而在 Debian / Ubuntu Linux 中,IDLE 工具可以通過包管理器 apt-get 獨立進行安裝,具體安裝命令如下:
2.1 安裝 IDLE (Python 2)
$ sudo apt-get install idle
2.2 安裝 IDLE (Python 3)
$ sudo apt-get install idle3
註:
如果通過以上方法無法安裝成功,則可以考慮從源碼安裝,源碼網址為 https://github.com/python/cpython/tree/master/Lib/idlelib .
安裝成功後,運行 IDLE (Python 2) 的命令為
$ idle
其顯示界面,如下圖所示
運行 IDLE (Python 3) 的命令為
$ idle3
其顯示界面,如下圖所示
參考資料
1. Wikipedia contributors. (2018, January 22). IDLE. In Wikipedia, The Free Encyclopedia
2. HowTo: Install Python idle IDE On Linux Operating System. https://www.cyberciti.biz/faq/rhel-centos-debian-ubuntu-python-idle-linux-installation/
3. Invoking Python IDLE on Linux. https://stackoverflow.com/questions/14097795/invoking-python-idle-on-linux
4. IDLE Documentation - Python 2. https://docs.python.org/2/library/idle.html
5. IDLE Documentation - Python 3. https://docs.python.org/3/library/idle.html
安裝 Python IDLE (Linux)