tkinter.filedialog
is for Python 3 only.
From your attempts, it seems like you are using Python 2.x
, try importing tkFileDialog
Example -
import tkFileDialog as filedialog
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 -
import sys
print(sys.version)
print(sys.executable)
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 -
- Give executable permission to the script. (Use
chmod u+x <script.py>
)
- Then run the script as -
./<script.py>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…