Find your tcl directory in Python, for example. C: \ Python32 \ tcl. This is the tcl / tk extension.
Create a new folder called Tkhtml.
Put (1) yours in this folder. DLL file, (2) pkgIndex.tcl text file
pkgIndex.tcl contains a line similar to this:
package ifneeded Tkhtml 0.0 [list load [file join $dir tkhtml.dll]]
If you can do this at the python prompt,
>>> import Tkinter
... then the package is available. The string '0.0' represents the version number.
noob oddy
source share