Results 1 to 2 of 2

Thread: ต้องการใช้ Tkinter แต่ import error ครับช่วยทีครับ

  1. #1
    Junior Member
    Join Date
    Oct 2006
    Location
    มุมตึก
    Posts
    8


    ผมต้องการใช้ Tkinter ครับแต่ import แล้วเกิด error สอนทีครับ ผมพิมพ์คำสั่งว่า

    Python 2.4.3 (#1, Oct 23 2006, 14:19:47)
    [GCC 4.1.1 20060525 (Red Hat 4.1.1-1)] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> from Tkinter import*
    Traceback (most recent call last):
    File "<stdin>", line 1, in ?
    File "/usr/lib/python2.4/lib-tk/Tkinter.py", line 38, in ?
    import _tkinter # If this fails your Python may not be configured for Tk
    ImportError: libtk8.4.so: cannot open shared object file: No such file or directory
    >>>

    ต้องทำอะไรบ้างสอนทีนะครับ ผมพึ่งศึกษาต้องทำโปรเจคจบนะครับ ขอบคุณครับ

  2. #2
    Administrator asylu3's Avatar
    Join Date
    Jun 2000
    Location
    Thailand
    Posts
    3,557


    Code:
     File "/usr/lib/python2.4/lib-tk/Tkinter.py", line 38, in ?
    import _tkinter # If this fails your Python may not be configured for Tk
    ImportError: libtk8.4.so: cannot open shared object file: No such file or directory
    เท่าที่ดูจาก error คิดว่า Python หาตำแหน่ง Library &#39;libtk8.4.so&#39; ไม่พบซึ่งอาจจะเป็นไปได้ว่า
    - คุณระบุชื่อไฟล์ผิด
    - ติดตั้ง Library ไม่สมบูรณ์

    วิธีแก้ให้แนะว่าให้เปิดไฟล์ /usr/lib/python2.4/lib-tk/Tkinter.py ดูที่บรรทัด 38 ว่า
    มันอ้างถึง Path ไหนที่จะ Import libtk8.4.so เข้ามาแล้ว Path นั้นมีอยู่จริงไหม
    ถ้าไม่มีไฟล์นี้อยู่ให้ลองค้นหาด้วยคำสั่งนี้ดูแล้วพยายาม Link ใหุ้ถูกต้อง

    Code:
    find / -name libtk8.4.so -print

Similar Threads

  1. Replies: 0
    Last Post: 18-02-2009, 04:07 PM
  2. How to import contacts into your Gmail address book
    By newsbot in forum World Hacking/Security News
    Replies: 0
    Last Post: 11-12-2007, 06:35 AM
  3. Replies: 4
    Last Post: 01-08-2006, 05:45 AM
  4. Replies: 2
    Last Post: 10-05-2005, 06:14 PM
  5. Replies: 0
    Last Post: 24-11-2004, 01:30 PM

Members who have read this thread : 0

Actions : (View-Readers)

There are no names to display.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •