- 首頁
- Gmail
- Google Drive
- XP化調校
- MacOS化
- 開機動畫
- Dock視窗導航器
- DockbarX
- dpkg(.deb安裝指令)
- GDebi(dpkg GUI版)
- gcin輸入法
- ibus輸入法
- fcitx5輸入法
- 新酷音輸入法(Linux版的自然輸入法)
- 小麥注音輸入法(Linux版的新注音輸入法)
- 語音輸入
- 換源(更換軟體來源)
- 字型安裝
- NTFS格式讀寫
- Ubuntu Tweak
- 系統調校
- 印表機安裝
- 開機管理程式
- 登入視窗
- adb與fastboot
- 自定義程式
- CrossOver Linux(要錢)
- wine
- PlayOnLinux
- VMware Player(跨平台)
- VirtualBox(跨平台)
- Nautilus(Linux版的檔案總管)
- vlc MediaPlayer(跨平台)
- MPV Media Player(跨平台)
- OpenShot Vedio Editor(跨平台)
- Kdenlive(跨平台)
- Audacity錄音與音效處理(跨平台)
- SMPlayer(Linux版的多媒體播放器)
- Gambas(Linux版的VB)
- Python(跨平台)
- PyQt5(跨平台)
- OnlyOffice(跨平台、最相容M$ Office)
- LibreOffice(跨平台)
- OpenOffice(跨平台)
- EIOffice
- WPS Office(跨平台)
- OXoffice
- PDF24 Tools(跨平台)
- Adobe PDF Reader(跨平台)(建議改用LibreOffice的Draw)
- Okular(跨平台PDF)
- Line(Chrome版本)(跨平台)
- gimp(Linux的Photoshop)(跨平台)
- Kolourpaint(Linux版的小畫家)
- Gedit(Linux版的記事本)
- nano(Linux版的PE2)
- XnView(Linux版的Irfan View)(跨平台)
- Picasa(跨平台)
- PPStream(跨平台)
- Hinedo
- BetaRadio
- Gstreamer Multimedia Codecs解碼器安裝(配合內建「影片」使用)
- w32codec、w64codec解碼器安裝
- wiimote
- Brave Browser(跨平台)
- Chrome(跨平台)
- Firefox(跨平台)
- Opera(跨平台)
- FileZilla(跨平台)
- Steam(跨平台)
- Video Downloader
- bt下載軟體
- Flash Player(跨平台)
- KompoZer(Linux版的NAMO web editor)
- RAR與ZIP
- 行事曆
- mono
- lxde
- Manjaro Linux
- Linux Mint
- Lubuntu
- Kubuntu
- KGubuntu
- B2DpureKGB
- ACFS ubuntu
- EzGo
- Medibuntu
- Wubuntu(Winux OS)要錢
- xPUD
- Remastersys
- 客製化 Ubuntu ISO(Cubic)
- Reconstructor
- 檔案Nemo製作可開機Live USB碟(Linux Mint Cinnamon檔案總管)
- Ventoy製作可開機Live USB碟(跨平台)
- UNetbootin製作可開機Live USB碟(跨平台)
- 常用軟體對照表
- GDebi(dpkg GUI版)
2023年10月8日 星期日
2023年7月29日 星期六
在Ubuntu 22.04完善Python 3(pip3、Tkinter、Qt5、idle)
2023年6月19日 星期一
How to Install IDLE Python IDE on Ubuntu 22.04?
IDLE is an Integrated Development Environment (IDE) for Python, a simple, easy-to-use program that allows users to write and run Python code. IDLE provides several useful features for working with Python, including a powerful editor, an interactive shell, and tools for debugging and profiling your code.
It is a great way to get started with Python, whether you are a beginner or an experienced programmer. If you are new to Python, you must use IDLE (Integrated Development and Learning Environment) IDE for Python. It is easy to use and does come with only the required features.
The content of this article is mentioned below:
- What is the IDLE IDE of Python?
- How to Install IDLE Python IDE on Ubuntu 22.04?
- How to Use IDLE Python IDE on Ubuntu 22.04?
- How to Remove IDLE Python IDE From Ubuntu 22.04?
What is the IDLE IDE of Python?
IDLE is included when you install Python on Windows or Mac, so it is cross-platform, and Linux users need to install it, which can be done using the package manager of the respective distribution.
It comes with a few basic functionalities on Linux that include:
- Code editor with syntax highlighting & correction, automatic indent, and much more.
- Smart debugger with stepping, breakpoints, and all the functionalities of a good IDE.
You can learn more about it by going through the official documentation.
How to Install IDLE Python IDE on Ubuntu 22.04?
Python IDLE IDE is available on the official repository of Ubuntu 22.04, and the following steps can be performed to install it on Ubuntu 22.04.
Step 1: Update the System Repositories
Before installing any package, it is recommended to update the system’s packages so that the newest
$ sudo apt update |

It’ll take a while to update the system repositories, depending on how long since the last update was installed.
Step 2: Install IDLE Python IDE
When the system repositories are updated, install the IDLE Python IDE using this command, and you’ll be asked to press “Y” to continue the process, as seen below.
$ sudo apt install idle3 |

After a few seconds, the installation process will be completed, and you have installed IDLE Python IDE on your system.
How to Use IDLE Python IDE on Ubuntu 22.04?
After installing the IDLE Python IDE, it is time to start coding a simple program. To do that, you’ll need to launch it first using this command:
$ idle |

it will open up the Python shell and show the version of Python being run.
Write a Simple Code
We’ll test it using a simple program to print output, as seen below.

After entering the code, when you hit the enter key, the output will be displayed right after the code’s ending, as seen in the output above.
How to Remove IDLE Python IDE From Ubuntu 22.04?
You can remove IDLE Python IDE on Ubuntu 22.04 by typing the following command below:
$ sudo apt remove idle |

The installed version of IDLE IDE is removed from the system.
Conclusion
You can install Python IDLE IDE on Ubuntu 22.04 via terminal using the command “sudo apt install idle3”. The IDLE is quite easy to learn and implement, especially for users new to Python. Following this, the basic information and the installation method of IDLE are provided in this post.









