On 6/3/12 5:59 PM, Smith Joseph wrote: > Here's The Problem - Here's the steps I perform to freeze the script Open > CMD>>Type In D:>>CD D:\Python>> Python setup.py build. That's how I freeze > it. However when I go to the build folder and get the .exe I run it. But I > get an error saying TCL may not be installed correctly... Whats TCL?
Tcl/Tk is the scripting language/GUI framework that is wrapped by Python's Tkinter module, which in turn is wrapped by EasyGUI (IIRC)...so you need to have Tcl/Tk as well. A Google for "cx_freeze Tcl/Tk" should give you some pointers on how to make sure Tcl/Tk is installed. -- Kevin Walzer Code by Kevin http://www.codebykevin.com ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ cx-freeze-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cx-freeze-users
