Idle что это linux

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.

IDLE Interactive Terminal

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.

Write First Python Program

To access the debugger go to Debug → Debugger. Debug mode will be on, you can debug and step through the code.

Python IDLE Debug

Go to Options → Configure IDLE. This will open settings windows.

Python IDLE Settings

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.

Читайте также:  Remote helper astra linux

Источник

Как установить 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 в Linux

Написание первой программы Python с использованием IDLE

Ну как же можно обойтись без первой программы?

Перейдите в меню Файл → Новый файл → Для того чтоб открыть текстовый редактор. Как только редактор будет открыт, вы сможете писать программу. Чтобы запустить программу из текстового редактора и сохраните файл. Требуется нажать кнопку F5 или Выполнить → Run Module.

Как установить Python IDLE в Linux

Python IDLE Отладчик

Чтобы получить доступ к отладчику, перейдите в Раздел отладка → Отладчик (Debug → Debugger). Режим отладки будет включен, вы можете отлаживать и шагать через код.

Python IDLE Отладчик Debug

Изменение визуальных настроек IDLE Python

Чтоб поменять цвета, шрифты и другие настройки интерфейса. Перейдите в меню Параметры → Настройка IDLE. Это откроет окно настроек.

Настройки Python IDLE

Заключение

На сегодня все. Надеюсь вы поняли что такое IDLE и как его установить в Linux. Как написать первую программу python через интерпретатор и текстовый редактор. А так же как получить доступ к отладчику и как изменить настройки IDLE.

Читайте также:  Remote admin on linux

Источник

How to Install IDLE Python IDE on Ubuntu 20.04

Ubuntu Python IDLE IDE

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.

Update the package list

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

Install IDLE

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.

Launch IDLE

Or else, enter keywords relevant to IDLE in your Ubuntu Dash search as follows:

Читайте также:  Удаление linux при установке windows

IDLE Desktop Icon

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:

Python Shell

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:

My first Python Program

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

Для установки сначала необходимо обновить индекс пакетов при помощи команды:

GW6U0FPt5Rpjm8OIKpZMO4Qy7S1QJSfNPyozevedNuNSsJqo6ftu5IbYufz4QnmjRMT7VU3KR8RReZFCt93LaZp65AizQ8oHY8kmlWulG13RfPj2SNbVu7mRjynHxHww7uxo7536YkaWu+qcsNsxAsEvOpVHfrpwR2z7Olz8JVkbyg0xa5jgnD+N9SuGMWKKkGpYLN+17bnRCjoI6tAetTwkVWEi6LR3db0hFexe19Wsd8kcjEKgsFFiKFKa9Es8bDNPCqx80CrBc16R67ss3UVr59lZwFaZZQuXcpFkUfp2pqjxkN7+P3K8Su1JHhATAAAAAElFTkSuQmCC

Так как интерпретатор языка программирования Python уже установлен в Ubuntu 20.04 по умолчанию, то можно сразу переходить к установке самой IDLE выполнив команду:

+bp6D4xA49jokElyXA3BYtQYjXT4S8ZFw+cwmMX++P8BObd5TA2H7xYAAAAASUVORK5CYII=

Для запуска IDLE можно воспользоваться 2 способами. Первый способ заключается в запуске из терминала для этого необходимо ввести команду:

B5S88AAAAASUVORK5CYII=

Второй способ — запуск при помощи ярлыка из меню с приложениями:

HkkkqsuKxgAAAABJRU5ErkJggg==

Создание первой программы в IDLE

Запустите IDLE любым из вышеперечисленных способ и в открывшемся окне интерпретатора введите следующий код:

print («Первая программа созданная в IDLE!»)

AYj7DgHYXRzCAAAAAElFTkSuQmCC

Нажмите на клавишу Enter и в терминале отобразится фраза — Первая программа созданная в IDLE!

Выводы

В этой небольшой статье была рассмотрена установка IDLE в Ubuntu 20.04, а также было показано написание первой программы, выводящее строку в терминал.

Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.

Источник

Оцените статью
Adblock
detector