File tree 2 files changed +38
-0
lines changed 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 9
9
There are a number of IDEs that support Python programming language.
10
10
Many editors and IDEs provide syntax highlighting, debugging tools, and :pep: `8 ` checks.
11
11
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.
12
25
Please go to `Python Editors <https://wiki.python.org/moin/PythonEditors >`_ and
13
26
`Integrated Development Environments <https://wiki.python.org/moin/IntegratedDevelopmentEnvironments >`_
14
27
for a comprehensive list.
Original file line number Diff line number Diff line change @@ -35,6 +35,31 @@ look at the following links:
35
35
https://slackbook.org/html/package-management-making-packages.html
36
36
for Slackware users
37
37
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
+
38
63
39
64
On FreeBSD and OpenBSD
40
65
----------------------
You can’t perform that action at this time.
0 commit comments