I\'m trying to use tkinter with python3 to open an image, see here a piece of code :
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # --- Python 3.4 from PI
It should be from tkinter import filedialog alternatively you can try from tkinter import * or import tkinter.filedialog as fd . If it doesn't work like that, then you should try to reinstall python.
from tkinter import filedialog
from tkinter import *
import tkinter.filedialog as fd