- How to Install Python IDLE in Linux
- IDLE Features
- Install Python IDLE IDE in Linux
- Writing First Python Program Using IDLE
- Как установить Python IDLE в Linux
- Что такое IDLE
- Функции IDLE
- Установка Python IDLE IDE в Linux
- Написание первой программы Python с использованием IDLE
- Python IDLE Отладчик
- Изменение визуальных настроек IDLE Python
- Заключение
- How to Install IDLE Python IDE on Ubuntu 20.04
- How to Install IDLE?
- Launch IDLE
- Your first Python program in IDLE
- Установка IDLE Python в Ubuntu 20.04
- Установка IDLE Python в Ubuntu 20.04
- Создание первой программы в IDLE
- Выводы
How to Install Python IDLE in Linux
IDLE is an Integrated and learning environment created with Python using the GUI Tkinter toolkit. This is mainly used by beginners to get familiar with Python. IDLE is a cross-platform application that works with Mac OS, Windows, and Linux. In windows, IDLE comes by default with the installation. For Mac OS and Linux, we have to install the IDLE separately.
IDLE Features
- Interactive Interpreter.
- A multi-window text editor.
- Smart intends.
- Code coloring.
- Call tips.
- Auto indentation.
- Debugger with persistent breakpoints.
- Stepping and Viewing of local and global Namespace.
If you are a beginner to Python programming or new to programming, IDLE is the best place to start with. But if you are an experienced programmer switching from another language to Python then you may try more advanced editors like Pycharm, VScode, Sublime Text, VIM, etc.
Install Python IDLE IDE in Linux
In most of today’s modern Linux distributions, Python is installed by default and it comes with the IDLE application. However, If isn’t installed, you can install it using your default package manager as shown.
$ sudo apt install idle [On Debian/Ubuntu for Python2] $ sudo apt-get install idle3 [On Debian/Ubuntu for Python3] $ sudo yum install python3-tools [On CentOS/RHEL and Fedora]
Once the installation is completed type «idle» from the terminal or go to start menu → type «idle» → Launch application.
When you open the IDLE, the interactive terminal will be displayed first. The interactive terminal provides auto-completion too, you can press (ALT + SPACE) for auto-completion.
Writing First Python Program Using IDLE
Go to File → New File → To open the text editor. Once the editor is opened you can write the program. To run the program from the text editor, save the file and press F5 or Run → Run Module.
To access the debugger go to Debug → Debugger. Debug mode will be on, you can debug and step through the code.
Go to Options → Configure IDLE. This will open settings windows.
That’s all for today. We have seen what IDLE is and how to install it in Linux. How to write the first python program through interpreter and Text editor. How to access the builtin debugger and how to change the settings of IDLE.
Как установить Python IDLE в Linux
Мы все знаем что в Linux Python установлен по умолчанию, но как я не старался я не смог найти IDLE. В этой инструкции я расскажу как установить Python IDLE в Linux. Но для начала давайте разберем что такое IDLE.
Что такое IDLE
IDLE — это интегрированная и обучающая среда, созданная с помощью Python. В которой используется GUI Tkinter toolkit. В основном этим пользуются новички, чтобы познакомиться с Python.
IDLE — это кроссплатформенное приложение, которое работает с Mac OS, Windows и Linux. Но в операционной системе Windows IDLE устанавливается в месте с Python. Для Mac OS и Linux мы должны установить IDLE отдельно.
Функции IDLE
- Удобный текстовый редактор.
- Раскраска кода.
- Советы и рекомендации.
- Автоматическое отступление.
- Отладчик.
- Просмотр локального и глобального пространства имен.
Если вы новичок в программировании на Python. Или и вообще новичок в программировании, то IDLE это лучшее приложение для начала. Но если вы опытный программист, переходящий с другого языка на Python. Тогда мы рекомендуем более продвинутые редакторы, такие как Pycharm, VScode, Sublime Text, VIM и т. д.
Установка Python IDLE IDE в Linux
В большинстве современных дистрибутивов Linux Python устанавливается по умолчанию и поставляется вместе с приложением IDLE. Но бывает такое что он не установлен, как в моем случае. Тогда вы можете установить его с помощью диспетчера пакетов, как показано ниже.
$ sudo apt install idle [на Debian/Ubuntu для Python2]
$ sudo apt-get install idle3 [на Debian/Ubuntu для Python3]
$ sudo yum install python3-tools [на CentOS/RHEL и Fedora]
После завершения установки введите в терминале «idle» . Так же можно перейти в меню Пуск → «idle» → Запустить приложение.
Когда вы открываете IDLE, вы увидите интерактивный терминал. Для выхода из термина можно использовать горячие клавиши ALT + SPACE.
Написание первой программы Python с использованием IDLE
Ну как же можно обойтись без первой программы?
Перейдите в меню Файл → Новый файл → Для того чтоб открыть текстовый редактор. Как только редактор будет открыт, вы сможете писать программу. Чтобы запустить программу из текстового редактора и сохраните файл. Требуется нажать кнопку F5 или Выполнить → Run Module.
Python IDLE Отладчик
Чтобы получить доступ к отладчику, перейдите в Раздел отладка → Отладчик (Debug → Debugger). Режим отладки будет включен, вы можете отлаживать и шагать через код.
Изменение визуальных настроек IDLE Python
Чтоб поменять цвета, шрифты и другие настройки интерфейса. Перейдите в меню Параметры → Настройка IDLE. Это откроет окно настроек.
Заключение
На сегодня все. Надеюсь вы поняли что такое IDLE и как его установить в Linux. Как написать первую программу python через интерпретатор и текстовый редактор. А так же как получить доступ к отладчику и как изменить настройки IDLE.
How to Install IDLE Python IDE on Ubuntu 20.04
IDLE stands for Integrated DeveLopment Environment. It is an IDE for Python, written in Python language itself and based on Tkinter with bindings to the Tk widget set. IDLE is most suitable for beginners as it is easy to use and not feature overloaded. Hence, it is very popular in educational environments.
IDLE is a cross-platform IDE solution that comes with a basic feature set that includes:
- Multi-window text editor with syntax highlighting, auto-completion, smart indent, and other features to make coding easy.
- Python shell with syntax highlighting.
- Integrated debugger with stepping, persistent breakpoints, and call stack visibility.
For more information on IDLE, visit the following official documentation:
In this article, we will be installing IDLE through the Ubuntu command line. The article also explains how to launch IDLE and use it to write and run a simple Python script.
We have run the commands and procedures mentioned in this article on a Ubuntu 18.04 or Ubuntu 20.04 system.
How to Install IDLE?
Python is installed by default on all the latest Ubuntu releases and it also usually comes with the IDLE application. However, if you have a minimal installation of Ubuntu that lacks any IDLE UI application, you can install it by following this method:
Open the Ubuntu command line, The Terminal, either through the system Dash or the Ctrl+Alt+T shortcut.
Then, you need to update your system’s repository index through the following command as sudo:
This way your system’s repository gets in-line with the Internet repositories and that helps you in installing the latest version of any available software.
You need to run this command as sudo because only an authorized user can add/remove, update, and configure software on Ubuntu. The system will ask you the password for sudo and then execute the rest of the command when you have provided a correct password.
The next step is to run the following command in order to install IDLE3. This is the best-suited version when you have either Python 2 or Python 3 installed on your system.
$ sudo apt-get install idle3
The system might ask you for a Y/n input in order to make sure that you indeed want to install the software. Please enter Y and then hit Enter, after which IDLE3 will be installed on your system.
Launch IDLE
You can launch IDLE both through the command line or the Ubuntu UI.
Run the following command in the Terminal in order to launch IDLE.
Or else, enter keywords relevant to IDLE in your Ubuntu Dash search as follows:
This will list all the IDLE applications installed on your system. Click on any one of them to Launch the Python integrated development environment.
Your first Python program in IDLE
Open the IDLE application, which by default looks like this:
Your first line of code starts from where you see the three “greater than” or “>” symbols.
Place the cursor at this point and write or copy & paste the following line of code:
print("This is my first Python program :) :)")
This is a simple print statement that can be used to print anything inside the parentheses “( )”, on the screen.
When you hit Enter, the output is displayed as follows:
You can even choose to save the program (through the Save/Save As option from the File menu) and access it later (through the Open option from the File menu or directly by clicking it from where you have saved it).
After reading this article, you can integrate the IDLE Python development environment into your Ubuntu system and make the best use of its UI-based simple and easy to use feature set.
Установка IDLE Python в Ubuntu 20.04
IDLE (расшифровывается как Integrated Development and Learning Environment — Интегрированная среда для разработки и обучения) — интегрированная среда разработки на языке Python. Официально — искажение от слова IDE, но на самом деле названа в честь Эрика Айдла (Eric Idle) из комедийной комик группы Монти Пайтон.
Преимущества IDLE заключается в подсветке синтаксиса, поддержке автозаполнения и встроенным отладчиком. Поставляется вместе с Python и может использоваться на многих платформах, среди которых Windows, Mac OS, Unix-подобные ОС. В данной статье будет рассмотрена установка данной IDE в операционной системе Ubuntu 20.04 и запуск первой программы.
Установка IDLE Python в Ubuntu 20.04
Для установки сначала необходимо обновить индекс пакетов при помощи команды:
Так как интерпретатор языка программирования Python уже установлен в Ubuntu 20.04 по умолчанию, то можно сразу переходить к установке самой IDLE выполнив команду:
Для запуска IDLE можно воспользоваться 2 способами. Первый способ заключается в запуске из терминала для этого необходимо ввести команду:
Второй способ — запуск при помощи ярлыка из меню с приложениями:
Создание первой программы в IDLE
Запустите IDLE любым из вышеперечисленных способ и в открывшемся окне интерпретатора введите следующий код:
print («Первая программа созданная в IDLE!»)
Нажмите на клавишу Enter и в терминале отобразится фраза — Первая программа созданная в IDLE!
Выводы
В этой небольшой статье была рассмотрена установка IDLE в Ubuntu 20.04, а также было показано написание первой программы, выводящее строку в терминал.
Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.