Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Edit with IDLE (Python GUI) context menu on Windows 7

Under Windows XP I have a context menu entry "edit with IDLE" for Python source files. I tried to make this work under Windows 7 (32 bit) as well by setting the corresponding registry entries under

HKEY_LOCAL_MACHINE\SOFTWARE\.py\shellex\ContextMenuHandlers\

However without success - the context menu entry does not appear. How do I set a context menu entry for a specific file type in Windows 7?

like image 770
Tim Avatar asked Mar 02 '11 13:03

Tim


People also ask

How do I edit a Python IDLE?

You can also open IDLE directly from your Python script file. Right click the file, then choose "Edit with IDLE". Rather than going through the "Run..." menu, learn to use F5 (on some systems, Fn + F5) to run your script. It's much quicker.

How do I open the Python editor window in IDLE?

IMPORTANT: To open your Python file again, locate the file in the folder, click once on the file name it to highlight it, then right-click on the mouse to see the options shown in the screen below, and select Edit with IDLE to open the editor window.


1 Answers

I spent some time trying to figure this out, and finally got it. I'm running Windows 7, but it should be the same for Windows Vista, Windows XP, etc.

  1. Uninstall Python
  2. Open registry (WINR, then type regedit and hit ENTER)
  3. CTRLF and type .py
  4. Each .py key you come across, delete it.
  5. Do this until it gives you the message: finished searching the registry. Repeat this process but changing the search for the following querys:

    • .pyw
    • python
    • python.exe
    • pythonw.exe
  6. Delete them all

  7. Log off from your user account
  8. Log back on
  9. Re-install Python
like image 146
richard nixon Avatar answered Oct 10 '22 05:10

richard nixon