About 15,400,000 results
Open links in new tab
  1. How do I open Python IDLE (Shell WIndow) in WIndows 10?

    To get the the idle edit window from the shell window is very simple if you know how. Here's how: Windows search for "idle" Click 'enter' idle shell appears click options in idle shell click configure idle …

  2. How to run a python script from IDLE interactive shell?

    Jun 22, 2013 · The IDLE shell window is not the same as a terminal shell (e.g. running sh or bash). Rather, it is just like being in the Python interactive interpreter (python -i). The easiest way to run a …

  3. How can I run IDLE for Python 3 in a Conda environment?

    Dec 4, 2024 · For running Python 2, all I do is activate the required Conda environment and just type idle. It automatically opens IDLE for Python 2.7. But I can't figure out how to do this for Python 3. I …

  4. В чем суть IDLE (Python)? - Stack Overflow на русском

    Скачала, установила Python 3.8. Потом узнала, что есть IDLE. См разные иконки приложения В чем идея? Почему, когда я набираю одну и ту же команду в разных окнах, в IDLE она …

  5. starting Python IDLE from command line to edit scripts

    Jun 9, 2017 · IDLE main entry point Run IDLE as python -m idlelib So with python -m idlelib <script_to_edit> you will be able to open and edit the script with idle. I haven't checked with previous …

  6. Difference Between Python's IDLE and its command line

    Sep 10, 2015 · 5 What are the key differences between Python's IDLE and its command line environment? IDLE looks nicer, of course, and has some kind of GUI... Moreover, is IDLE treated the …

  7. Default working directory for Python IDLE? - Stack Overflow

    Mar 12, 2013 · Here's a way to reset IDLE's default working directory for MacOS if you launch Idle as an application by double-clicking it. You need a different solution if you launch Idle from a command line …

  8. Install python modules/package using IDLE on Windows

    import requests from bs4 import BeautifulSoup import itertools import io import re import smtplib, os Now, when I run it, it says missing requests module. I've downloaded & installed 3 versions of Python …

  9. How to launch python Idle from a virtual environment (virtualenv)

    Short answer Start the virtual environment Run python -m idlelib.idle From this answer. Long answer This answer assumes Python 3. There are a few different virtual environment managers, each of …

  10. python - Как вставить уже готовый код в IDLE? - Stack Overflow на …

    Apr 23, 2018 · Только начал учиться программировать. Python 3.6. shell. Если вставить уже готовый код (например с блокнота) в IDLE, то только первая строчка кода начнется с ">>>", а …