简体   繁体   中英

Tkinter error with importing

I'm trying to create a simple gui program in python however when I try to run it I get this error:


This is all I have in code.

from Tkinter import *


test = Tk()

test.title("Reverse")
test.geometry("300 x 200")

test.mainloop()

   'import site' failed; use -v for traceback
        Traceback (most recent call last):
       File "C:/Users/Brenda/PycharmProjects/Reverse a String/Reverse a String.py", line 1, in <module>
        from Tkinter import *
      File "C:\Python27\Lib\lib-tk\Tkinter.py", line 38, in <module>
        import FixTk
      File "C:\Python27\Lib\lib-tk\FixTk.py", line 1, in <module>
        import sys, os
      File "C:\Python27\Lib\os.py", line 398, in <module>
        import UserDict
      File "C:\Python27\Lib\UserDict.py", line 84, in <module>
        _abcoll.MutableMapping.register(IterableUserDict)
      File "C:\Python27\Lib\abc.py", line 109, in register
        if issubclass(subclass, cls):
      File "C:\Python27\Lib\abc.py", line 184, in __subclasscheck__
        cls._abc_negative_cache.add(subclass)
      File "C:\Python27\Lib\_weakrefset.py", line 86, in add
        self.data.add(ref(item, self._remove))
    TypeError: cannot create weak reference to 'classobj' object
test.geometry("300 x 200") should be: 
test.geometry("300x200")

Also, make sure you are correct in how you installed tkinter. On a linux machine, use:

sudo apt-get install python-tk

You can also try looking at the following similar question: https://stackoverflow.com/q/7753181/3681650

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM