約 52 件の結果
リンクを新しいタブで開く
  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 a …

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

    2013年6月22日 · 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?

    2024年12月4日 · 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. How to start IDLE (Python editor) without using the shortcut on …

    A new window will appears, and you will see the shortcut of Idle (Python GUI) Right click, hold down and pull out to desktop to create a shortcut of Python GUI on desktop.

  5. starting Python IDLE from command line to edit scripts

    2017年6月9日 · 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. В чем суть IDLE (Python)? - Stack Overflow на русском

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

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

    2013年3月12日 · 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 …

  8. How to enable the "idle" command from Windows Command Prompt

    2019年8月7日 · If it doesn't, you can paste the path to the python folder from earlier that was added automatically upon installation and search around in there until you find the idle executable, then add …

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

    2011年2月7日 · 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, …

  10. Is there a way to clear Python's IDLE window? - Stack Overflow

    I know there's a similar topic about the Python console, but I do not know if they are the same. I tried system(&quot;clear&quot;) and it didn't work here. How do I clear Python's IDLE window?