Advertisement
AtheistSpacePirate

Python 2/3 error messages

Nov 2nd, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Python2 :
  2.  
  3. [i**h*****@manjaro Software_Dev]$ python2 textpad.py
  4. Traceback (most recent call last):
  5. File "textpad.py", line 1, in <module>
  6. from Tkinter import *
  7. File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 39, in <module>
  8. import _tkinter # If this fails your Python may not be configured for Tk
  9. ImportError: libtk8.6.so: cannot open shared object file: No such file or directory
  10.  
  11. Python3 :
  12.  
  13. [i**h*****@manjaro Software_Dev]$ python3 textpad.py
  14. Traceback (most recent call last):
  15. File "textpad.py", line 1, in <module>
  16. from Tkinter import *
  17. ImportError: No module named 'Tkinter'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement