Cygwin Python and Tkinter

*** Note: Tkinker and Idle are now in the default Cygwin Python distribution ***
- install the missing 'X' headers
for tcl/tk
- You will also need my slightly modified setup.py
- Cygwin TCL needs a Win32 path
I just add this to my ~/.bashrc
- export TCL_LIBRARY=`cygpath -w /`"usr\\share\\tcl8.0"
- export TK_LIBRARY=`cygpath -w /`"usr\\share\\tk8.0"
Note I have cygwin installed at a drive's root directory
If your installation is not installed at root you will probably need
- export TCL_LIBRARY=`cygpath -w /`"\\usr\\share\\tcl8.0"
- export TK_LIBRARY=`cygpath -w /`"\\usr\\share\\tk8.0"
- recompile and install
Python2.1
- cd Python2.1
- ./configure --without-threads
- make
Last modified: 04/19/01
Norman Vine(nhv@cape.com)
Home