File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 99There are a number of IDEs that support Python programming language.
1010Many editors and IDEs provide syntax highlighting, debugging tools, and :pep: `8 ` checks.
1111
12+
13+ IDLE --- Python editor and shell
14+ ================================
15+
16+ IDLE is Python’s Integrated Development and Learning Environment and is generally bundled with Python installs.
17+ If you are on Linux and do not have IDLE installed see :ref: `Installing IDLE on Linux <installing_idle_on_linux >`.
18+ For more information see the :ref: `IDLE docs <idle >`.
19+
20+
21+ Other Editors and IDEs
22+ ======================
23+
24+ Python's community wiki has information submitted by the community on Editors and IDEs.
1225Please go to `Python Editors <https://wiki.python.org/moin/PythonEditors >`_ and
1326`Integrated Development Environments <https://wiki.python.org/moin/IntegratedDevelopmentEnvironments >`_
1427for a comprehensive list.
Original file line number Diff line number Diff line change @@ -35,6 +35,31 @@ look at the following links:
3535 https://slackbook.org/html/package-management-making-packages.html
3636 for Slackware users
3737
38+ .. _installing_idle_on_linux :
39+
40+ Installing IDLE
41+ ~~~~~~~~~~~~~~~
42+
43+ In some cases, IDLE might not be included in your Python installation.
44+
45+ * For Debian and Ubuntu users::
46+
47+ sudo apt update
48+ sudo apt install idle
49+
50+ * For Fedora, RHEL, and CentOS users::
51+
52+ sudo dnf install python3-idle
53+
54+ * For SUSE and OpenSUSE users::
55+
56+ sudo zypper in python3-idle
57+
58+ * For Alpine Linux users::
59+
60+ sudo apk add python3-idle
61+
62+
3863
3964On FreeBSD and OpenBSD
4065----------------------
You can’t perform that action at this time.
0 commit comments