Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1090395
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:22:03+00:00 2026-05-16T23:22:03+00:00

I want to open an image in the default browser with Python. I thought

  • 0

I want to open an image in the default browser with Python. I thought it might be as simple as
webbrowser.open(path_to_file), but on XP at least that opens the Windows Picture and Fax Viewer instead.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T23:22:03+00:00Added an answer on May 16, 2026 at 11:22 pm

    Well, it should be that simple (in my opinion), but the problem is with how the webbrowser module sets up the default browser on Windows. Because of this, when you type in

    webbrowser.open(path_to_file)
    

    what is then called is

    os.startfile(url)
    

    which works fine for url’s, but for files, it uses the Windows Picture and Fax Viewer unless you’ve associated some other program with the image file type. Basically, if you use the webbrowser.get() command to get an actual browser it will be fine. Here’s a way to do it with internet explorer on Windows (which has been set-up in the webbrowser module to be the hardest to get) :

    import os,webbrowser
    iexplore = os.path.join(os.environ.get("PROGRAMFILES", "C:\\Program Files"),
                            "Internet Explorer\\IEXPLORE.EXE")
    browser = webbrowser.get(iexplore)
    browser.open(path_to_file)
    

    other ones like firefox are easier to get:

    browser = webbrowser.get("firefox")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to know how to open and manipulate a simple image file in
I want to open a GIF image from the python console in Linux. Normally
I want to open the default image gallery inside my application, just like the
I want to force user to download images. Not open in browser. It is
I want to create an app which has a default image as the background
from my application I want to open files (jpg, pdf, ..) with the default
So, i want to do some metrics about the times one image is open,
i want that when LightFace will be shown then a busy image should come
I want to open one image from my assets folder, resize it and resave
I have the following code to open a window notification but I want the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.