Skip to content
Advertisement

Tkinter import filedialog error

I’m trying to use tkinter with python3 to open an image, see here a piece of code :

JavaScript

I have installed python3-tk, and I have the demo window when I write

JavaScript

in the terminal. I tried several combinations that did not work :

JavaScript

gives

JavaScript

,

JavaScript

gives

JavaScript

I tried with _tinker , FileDialog, file_dialog, but I always have “ImportError : cannot import name filedialog”. Any clue ?

Advertisement

Answer

tkinter.filedialog is for Python 3 only.

From your attempts, it seems like you are using Python 2.x , try importing tkFileDialog

Example –

JavaScript

Or alternatively, check why it ends up running Python 2.x , instead of Python 3.x .

Tkinter module is only there in python 2 , python 3 has tkinter module, since when importing Tkinter it is successfully getting imported, but when importing tkinter it is failing to import it, we can be sure you end up running Python 2.x and not Python 3.

You can do –

JavaScript

to check the version of python currently running as well as the location of python (or python3) that is running.


Most probably , the issue is occuring because even though you have python3 shebang line in your script, you are most probably running python <script.py> , this always causes python 2 to run.

The aim of adding the python3 shebang line was to be able to run the script directly, without specifying the executable. For that you would need to do –

  1. Give executable permission to the script. (Use chmod u+x <script.py> )
  2. Then run the script as – ./<script.py>
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement