diff options
Diffstat (limited to 'Doc/using/unix.rst')
-rw-r--r-- | Doc/using/unix.rst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst index a2bcdab..9ed97f6 100644 --- a/Doc/using/unix.rst +++ b/Doc/using/unix.rst @@ -35,6 +35,31 @@ look at the following links: https://slackbook.org/html/package-management-making-packages.html for Slackware users +.. _installing_idle_on_linux: + +Installing IDLE +~~~~~~~~~~~~~~~ + +In some cases, IDLE might not be included in your Python installation. + +* For Debian and Ubuntu users:: + + sudo apt update + sudo apt install idle + +* For Fedora, RHEL, and CentOS users:: + + sudo dnf install python3-idle + +* For SUSE and OpenSUSE users:: + + sudo zypper in python3-idle + +* For Alpine Linux users:: + + sudo apk add python3-idle + + On FreeBSD and OpenBSD ---------------------- |