chprice / Python-Chat-Program

A P2P chat program designed to work on LANs or across the internet for chatting.
57 stars 44 forks source link

tkinter #1

Closed rlguarino closed 11 years ago

rlguarino commented 12 years ago

Traceback (most recent call last): File "pyChat.py", line 1, in from tkinter import * ImportError: No module named tkinter

This error if you don't have tkinter installed. Maybe write a setup script or a try catch to handle this gracefully.

ykplayer1989 commented 11 years ago

Under Python 2 tkinter is named Tkinter and tkfiledialog is named tkFileDialog.

chprice commented 11 years ago

This has been fixed as of commit 96451f327c04fbe7e2e17376527bc37cc9c30ec8. Thanks for the tip!