Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set Python IDLE as Default Program to Open .py Extensions [closed]

I am on Windows 7. I have Python 2.7.8 (64 bit) installed. Today, I changed the default program that opens .py files from IDLE to Windows Command Processor and stupidly selected the checkbox that said "always use the selected program to open this kind of file".

What I want to do is change my default program back to IDLE.

When I attempt to change it back to IDLE, I go to Control Panel\Programs\Default Programs\Set Associations and select the .py name and click Change Program. I do see python.exe but selecting that does nothing. I then use the "Browse" button to navigate to C:\Python27\Lib\idlelib but don't know if I should select idle.py, idle.pyw, idle.bat or some other IDLE program that will force the default program to be IDLE!

Nothing happens after I select one of these.

How do I make IDLE be the default program that opens .py files and now disassociate Windows Command Processor from being the default?

like image 223
Jarad Avatar asked Jul 28 '14 05:07

Jarad


People also ask

How do I change the default app for py files?

py) in the file manager, right-click it, and select Properties. Click the "Open With" tab and select the application you want to use for that file type. Use the Set as default button to make the application the default application. From now, clicking on a python file should open your preferred editor.

How do I open a Python module in IDLE?

To run a file of code that we're editing in IDLE, select the file's text edit window, open that window's Run pull-down menu, and choose the Run Module option listed.


1 Answers

If the "always use the selected program to open this kind of file" checkbox is grayed out, ungray it by:

  1. Open regedit Go to
  2. HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts
  3. Find the .py extension among the list
  4. Delete the UserChoice key (folder)

Then you can navigate to: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Python XX and choose IDLE...

or

navigate to C:\...\PythonXX\Lib\idlelib\idle.bat and select that.


---- If You are updating from a previous version of Python ----

I just updated from Python 3.4 to Python 3.5 and it was a nightmare setting IDLE as my default program. I wasted so much time. I finally got it to where I no-longer have to right-click and select IDLE. Instead, I just click on a .py file and it opens IDLE by default... and it has a legit-looking Python icon (not an ugly .bat icon).

I'm posting this so mainly I'll remember how I did this!

  1. Uninstalled Python 3.4 using control panel (Windows).
  2. Deleted remaining C:\Python34 folder entirely.
  3. Went into registry:

    1. Windows "start" orb (bottom-left) > type "run" > type "regedit" in Run dialog box.
    2. Looked in the following areas and deleted python keys entirely:
      • HKEY_CURRENT_USER\Software
      • HKEY_LOCAL_MACHINE\SOFTWARE
      • HKEY_USERS.DEFAULT\Software
      • HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node
    3. (Optional, do with caution) In left pane of Registry Editor, right-click and select "Find". I looked in keys, values and data but looking in just keys might be enough. I deleted the ones that looked very specific to start-up procedures. You can press F3 to find again each time. enter image description here
  4. I ran CCleaner specifically to remove / clean-up the registry, but also to clean up temp folders and just general maintenance. Run it several times.

  5. Restart computer
  6. Install new version of Python. If installation fails first time, consider un-checking some of the "Advanced Options" during installation. Ex: "download debug binaries". enter image description here
  7. After you install, .py files may not be associated to a program. You can go to your control panel and set file associations. enter image description here
  8. Look for .py file extension and click "Change program" button in the top-right. Browse to the location of idle.bat. Example: C:\Python35\Lib\idlelib. Click the idle.bat file and press OK.

At this point, you should be able to click a python file (file with .py extension) and it will open using IDLE's idle.bat program. I've read that sometimes this doesn't work for some people.

But now, the icon of .py files look like the icon of the .bat program. This looks like crap so I did the next steps to associate a Python icon with .py files.

  1. Start > run > regedit (to launch Registry Editor)
  2. In Registry Editor, navigate to: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.py\UserChoice and make note of the Progid (Applications\idle.bat in my example). enter image description here
  3. If UserChoice is not there, navigate to HKEY_CLASSES_ROOT\.py and make note of the (Default) value (ex: py_auto_file). enter image description here
  4. I didn't know which to change so I changed BOTH.

    1. Go to: HKEY_CLASSES_ROOT\Applications\idle.bat. A "DefaultIcon" folder didn't exist so I right-clicked idle.bat and chose New > Key and named it "DefaultIcon". For the (Default) data, I put C:\Python35\Lib\idlelib\Icons\idle.ico to reference the .ico image that's within the IDLE icons folder. added default icon folder

    2. Go to: HKEY_CLASSES_ROOT\py_auto_file and did the exact same steps as step 12.1. added ico to py_auto_file

  5. Restart your computer.

End-result

After all these steps, I am now able to double-click a .py file in Windows and it launches the file in Python IDLE.

like image 110
Jarad Avatar answered Sep 19 '22 10:09

Jarad