Fehlermeldungen bei py2exe

Wenn du dir nicht sicher bist, in welchem der anderen Foren du die Frage stellen sollst, dann bist du hier im Forum für allgemeine Fragen sicher richtig.
Leonidas
Python-Forum Veteran
Beiträge: 16025
Registriert: Freitag 20. Juni 2003, 16:30
Kontaktdaten:

Toni83 hat geschrieben:wieso bin ich wenn ich mich am Anfang anmelde und dann eine Antwort schreibe wieder ausgeloggt?
Du musst immer auf www.python-forum.de gehen, sonst gibt es probleme, wenn du z.B. das WWW weglässt.
My god, it's full of CARs! | Leonidasvoice vs (former) Modvoice
Gast

Servus querdenker,

Habe jetzt das ganze verglichen und Python bindet alles ein was das Programm zum laufen benötigt.
Was sollte der Vergleich eigentlich sonst noch bringen? Was wäre wenn etwas fehlen würde? Müsste ich es dann die z.B fehlenden Bibliotheken selber einbinden?

Gruss,
Toni
Benutzeravatar
Toni83
User
Beiträge: 125
Registriert: Donnerstag 28. Juli 2005, 10:53

Mist,
habe es vorhin schon wieder falsch gemacht.
Danke Leonidas für den Tip!
querdenker
User
Beiträge: 424
Registriert: Montag 28. Juli 2003, 16:19
Wohnort: /dev/reality

Hi Toni83!
Toni83 hat geschrieben:Servus querdenker,

Habe jetzt das ganze verglichen und Python bindet alles ein was das Programm zum laufen benötigt.
Was sollte der Vergleich eigentlich sonst noch bringen? Was wäre wenn etwas fehlen würde? Müsste ich es dann die z.B fehlenden Bibliotheken selber einbinden?
Moment, py2exe bindet alles ein meinst du, oder?
Ich habe die Erfahrung gemacht, das py2exe die Abhängigkeiten nicht immer sauber auflösen kann, gerade wenn es um Datenbanken, wx* oder de/encoding geht, hakt es ab und zu.

Deshalb hatte ich vorgeschlagen mal einen Abgleich zu machen.
Je nachdem welchen Weg du gehst, solltest du die mit zu übernehmenden packages (gerade eigene, die nicht unbedingt im PYTHONPATH stehen) entweder in der setup.py oder in der setup.cfg mit angeben.

mfg, querdenker
Leonidas
Python-Forum Veteran
Beiträge: 16025
Registriert: Freitag 20. Juni 2003, 16:30
Kontaktdaten:

Naja, py2exe bindet nicht immer alles (korrekt) ein, aber es reicht meist paar Einstellungen in der setup.py zu ändern dann geht das schon.

Aber bevor du verzweifeltst Toni83: versuch doch mal cx_Freeze. Ist zwar etwas kompluizierter zu bedienen, funktioniert aber auch unter Linux. Dann kannst du auch feststellen wo der Fehler liegt: an py2exe oder deinem Programm.
My god, it's full of CARs! | Leonidasvoice vs (former) Modvoice
querdenker
User
Beiträge: 424
Registriert: Montag 28. Juli 2003, 16:19
Wohnort: /dev/reality

@Leonidas:
Was anderes habe ich doch auch nicht gesagt, oder :wink:


@all:
Solange wir nicht wissen, was Toni83 alles einbindet, bzw wir irgendwelche Tracebacks zu sehen bekommen, ist das sowieso alles eher Rätselraten.
Daher ist der Vorschlag von Leonidas, es mit einem anderen Tool zu versuchen, ziemlich gut

mfg, querdenker
Leonidas
Python-Forum Veteran
Beiträge: 16025
Registriert: Freitag 20. Juni 2003, 16:30
Kontaktdaten:

querdenker hat geschrieben:Was anderes habe ich doch auch nicht gesagt, oder :wink:
Nein, ich wollte es nur ergänzend dazu sagen. Aber ich seh grad' das wär gar nicht nötig gewesen :oops: Sorry.
My god, it's full of CARs! | Leonidasvoice vs (former) Modvoice
querdenker
User
Beiträge: 424
Registriert: Montag 28. Juli 2003, 16:19
Wohnort: /dev/reality

OT
@Leonidas: Sorry? Wofür??

mfg, querdenker
Leonidas
Python-Forum Veteran
Beiträge: 16025
Registriert: Freitag 20. Juni 2003, 16:30
Kontaktdaten:

querdenker hat geschrieben:@Leonidas: Sorry? Wofür??
Ach vergessen wir das und konzentrieren uns lieber auf die Lösung von Toni83s Problem. :idea:
My god, it's full of CARs! | Leonidasvoice vs (former) Modvoice
Benutzeravatar
Toni83
User
Beiträge: 125
Registriert: Donnerstag 28. Juli 2005, 10:53

Sorry für die spät Antwort,
war am Wochenende nicht am Arbeitsplatz.
Was ist dieses cx_Freeze? Ist das wie ich richtig verstanden habe ein .exe-Maker? Wäre ja grandios wenn es mit dem funktionieren würde!
Ich benutze keine eigenen geschriebenen Bibliotheken, die py2exe ausversehen beim erstellen der exe auslassen könnte.
Alle Bibliotheken sind entweder Standard oder wurden im site-packages Ordner Regelgerecht installiert. (Habe nachträglich noch alles überprüft).

Gruss,
Toni
Leonidas
Python-Forum Veteran
Beiträge: 16025
Registriert: Freitag 20. Juni 2003, 16:30
Kontaktdaten:

Toni83 hat geschrieben:Was ist dieses cx_Freeze? Ist das wie ich richtig verstanden habe ein .exe-Maker? Wäre ja grandios wenn es mit dem funktionieren würde!
Ja, genau das ist es.
My god, it's full of CARs! | Leonidasvoice vs (former) Modvoice
querdenker
User
Beiträge: 424
Registriert: Montag 28. Juli 2003, 16:19
Wohnort: /dev/reality

Toni83 hat geschrieben:Alle Bibliotheken sind entweder Standard oder wurden im site-packages Ordner Regelgerecht installiert. (Habe nachträglich noch alles überprüft).
Das hat nichts zu sagen. Wie schon geschrieben, wx und die encodings sind auch im site-packages installiert

aber vielleicht hilft dir cx_freeze wirklich weiter

mfg, querdenker
Benutzeravatar
Toni83
User
Beiträge: 125
Registriert: Donnerstag 28. Juli 2005, 10:53

Ich werde jetzt mal cx_freeze ausprobieren!
Benutzeravatar
Toni83
User
Beiträge: 125
Registriert: Donnerstag 28. Juli 2005, 10:53

Habe jetzt das mit cx_freeze ausprobiert!
Die .exe wurde generiert und im dist Ordner abgelegt.
Problem:
Beim starten der .exe kommt diesmal der Fehler, dass die Anwendung nicht gestartet werden konnte weil tk84.dll fehlt! Was soll das denn nun schon wieder :?
Kann mir da jemand weiterhelfen

Danke!
querdenker
User
Beiträge: 424
Registriert: Montag 28. Juli 2003, 16:19
Wohnort: /dev/reality

und sag bloß,
du hast wieder nichts, was du uns posten kannst/darfst.....

py2exe und cx-freeze laufen immer sauber durch, es gibt in der Ausgabe keinerlei Hinweise darauf, das etwas nicht geladen/importiert werden kann....

dezent angepisst von Leuten die Hilfe wollen aber nichts dafür tun,

querdenker
Benutzeravatar
Toni83
User
Beiträge: 125
Registriert: Donnerstag 28. Juli 2005, 10:53

querdenker hat geschrieben: py2exe und cx-freeze laufen immer sauber durch, es gibt in der Ausgabe keinerlei Hinweise darauf, das etwas nicht geladen/importiert werden kann....
querdenker
Was soll das heissen? Nehme mal an du fragst nach der Ausgabe von cx-freeze beim erstellen der .exe:

-------------------------------------------------------------------------------------

Name File
---- ----
P EasyDialogs D:\Programme\Programmieren\Python23\lib\site-packages\EasyDialogs\__init__.py
m EasyDialogs.EasyDialogsResources D:\Programme\Programmieren\Python23\lib\site-packages\EasyDialogs\EasyDialogsResources.py
m FixTk D:\Programme\Programmieren\Python23\lib\lib-tk\FixTk.py
m Tkconstants D:\Programme\Programmieren\Python23\lib\lib-tk\Tkconstants.py
m Tkinter D:\Programme\Programmieren\Python23\lib\lib-tk\Tkinter.py
m UserDict D:\Programme\Programmieren\Python23\lib\UserDict.py
m __builtin__
m __future__ D:\Programme\Programmieren\Python23\lib\__future__.py
m __main__ CADV72.py
m _codecs
m _ctypes D:\Programme\Programmieren\Python23\lib\site-packages\_ctypes.pyd
m _locale
m _sre D:\Programme\Programmieren\Python23\DLLs\_sre.pyd
m _tkinter D:\Programme\Programmieren\Python23\DLLs\_tkinter.pyd
m array
m binascii
m codecs D:\Programme\Programmieren\Python23\lib\codecs.py
m copy D:\Programme\Programmieren\Python23\lib\copy.py
m copy_reg D:\Programme\Programmieren\Python23\lib\copy_reg.py
P ctypes D:\Programme\Programmieren\Python23\lib\site-packages\ctypes\__init__.py
m ctypes.decorators D:\Programme\Programmieren\Python23\lib\site-packages\ctypes\decorators.py
m ctypes.wintypes D:\Programme\Programmieren\Python23\lib\site-packages\ctypes\wintypes.py
m cx_Freeze__init__ D:\Programme\Programmieren\Python23\initscripts\console.py
m dis D:\Programme\Programmieren\Python23\lib\dis.py
P encodings D:\Programme\Programmieren\Python23\lib\encodings\__init__.py
m encodings.aliases D:\Programme\Programmieren\Python23\lib\encodings\aliases.py
m errno
m exceptions
m imp
m inspect D:\Programme\Programmieren\Python23\lib\inspect.py
m linecache D:\Programme\Programmieren\Python23\lib\linecache.py
m locale D:\Programme\Programmieren\Python23\lib\locale.py
m macpath D:\Programme\Programmieren\Python23\lib\macpath.py
m math
m nt
m ntpath D:\Programme\Programmieren\Python23\lib\ntpath.py
m opcode D:\Programme\Programmieren\Python23\lib\opcode.py
m os D:\Programme\Programmieren\Python23\lib\os.py
m os2emxpath D:\Programme\Programmieren\Python23\lib\os2emxpath.py
m popen2 D:\Programme\Programmieren\Python23\lib\popen2.py
m posixpath D:\Programme\Programmieren\Python23\lib\posixpath.py
m re D:\Programme\Programmieren\Python23\lib\re.py
m repr D:\Programme\Programmieren\Python23\lib\repr.py
m signal
m sre D:\Programme\Programmieren\Python23\lib\sre.py
m sre_compile D:\Programme\Programmieren\Python23\lib\sre_compile.py
m sre_constants D:\Programme\Programmieren\Python23\lib\sre_constants.py
m sre_parse D:\Programme\Programmieren\Python23\lib\sre_parse.py
m stat D:\Programme\Programmieren\Python23\lib\stat.py
m string D:\Programme\Programmieren\Python23\lib\string.py
m strop
m struct
m sys
m time
m tkCommonDialog D:\Programme\Programmieren\Python23\lib\lib-tk\tkCommonDialog.py
m tkMessageBox D:\Programme\Programmieren\Python23\lib\lib-tk\tkMessageBox.py
m token D:\Programme\Programmieren\Python23\lib\token.py
m tokenize D:\Programme\Programmieren\Python23\lib\tokenize.py
m traceback D:\Programme\Programmieren\Python23\lib\traceback.py
m types D:\Programme\Programmieren\Python23\lib\types.py
m warnings D:\Programme\Programmieren\Python23\lib\warnings.py
P wx D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\__init__.py
m wx.__version__ D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\__version__.py
m wx._controls D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_controls.py
m wx._controls_ D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_controls_.pyd
m wx._core D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_core.py
m wx._core_ D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_core_.pyd
m wx._gdi D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_gdi.py
m wx._gdi_ D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_gdi_.pyd
m wx._misc D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_misc.py
m wx._misc_ D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_misc_.pyd
m wx._windows D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_windows.py
m wx._windows_ D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_windows_.pyd
P wxPython D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\__init__.py
m wxPython._controls D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_controls.py
m wxPython._core D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_core.py
m wxPython._gdi D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_gdi.py
m wxPython._misc D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_misc.py
m wxPython._windows D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_windows.py
m wxPython._wx D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_wx.py
m zipimport

Missing modules:
? Carbon.File imported from macpath
? MacOS imported from Tkinter, wx._core
? ce imported from os
? mac imported from os
? org.python.core imported from copy
? os.path imported from os
? os2 imported from os
? posix imported from os
? pwd imported from posixpath
? riscos imported from os
? riscosenviron imported from os
? riscospath imported from os
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\wxmsw26h_animate_vc.dll
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\wxmsw26h_stc_vc.dll
Copying D:\Programme\Programmieren\Python23\lib\site-packages\_ctypes.pyd
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_misc_.pyd
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_windows_.pyd
Copying D:\Programme\Programmieren\Python23\DLLs\_tkinter.pyd
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_gdi_.pyd
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\wxmsw26h_gl_vc.dll
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\wxmsw26h_vc.dll
Copying C:\WINDOWS\system32\python23.dll
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_controls_.pyd
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\wxmsw26h_gizmos_vc.dll
Copying D:\Programme\Programmieren\Python23\DLLs\_sre.pyd
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\wxmsw26h_gizmos_xrc_vc.dll
Copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_core_.pyd
Frozen binary dist\CADV72.exe created.

-------------------------------------------------------------------------------------

Es steht zwar drin das ein paar Module fehlen, jedoch benötige ich die Module nicht wirklich.
querdenker hat geschrieben: dezent angepisst von Leuten die Hilfe wollen aber nichts dafür tun,
Wenn du mir sagen würdest was Ihr genau zum lösen dieser Aufgabe braucht, werde ich sofern es nicht den Source-Code betrifft es natürlich zur Verfügung stellen. Kein Grund im Umgangston so herabzufallen.

Gruss,
Toni
querdenker
User
Beiträge: 424
Registriert: Montag 28. Juli 2003, 16:19
Wohnort: /dev/reality

Hallo Toni!
Endlich nicht mehr in die Glaskugel schauen :)
Schau dir mal deine Ausgabe an, die du gepostet hast!

Da steht nichts von einer tk84.dll

Ich kenne zwar nur py2exe für Win*, aber das Prinzip dürfte bei cx_freeze ähnlich sein, daher gilt:
Verlass dich niemals darauf, das alle Abhängigkeiten automatisch aufgelöst werden
Mit anderen Worten: du musst deinem setup helfen, indem du ihm sagst, was es auf jeden Fall mitnehmen soll.

Kannst du den output von einem py2exe-Lauf bitte auch mal posten?
Und vorher mal den build- und den dist-Ordner löschen, damit py2exe auch wirklich alles abgleichen muß.



und was den Ton betrifft: Hast du dir mal die anderen Threads zu py2exe durchgelesen?
Wenn ja, dürfte dir aufgefallen sein, das IMMER die setup.py und, falls vorhanden, die setup.cfg gepostet worden sind.
Dazu kommt dann meistens noch die Ausgabe, die das Programm erzeugt.

Ohne das kann dir keiner wirklich helfen.

mfg, querdenker
Leonidas
Python-Forum Veteran
Beiträge: 16025
Registriert: Freitag 20. Juni 2003, 16:30
Kontaktdaten:

Ich würd sagen, du kopierst einfach per Hand die tk84.dll zur EXE deines Programmes und guckst was dann passiert.
My god, it's full of CARs! | Leonidasvoice vs (former) Modvoice
Benutzeravatar
Toni83
User
Beiträge: 125
Registriert: Donnerstag 28. Juli 2005, 10:53

Wo finde ich die tk84.dll? Habe jetzt den ganzen Python Installationsordner durchsucht und nichts gefunden.
Werde auch noch am Vormittag meine py2exe Ausgabe reinstellen...

Gruss,
Toni
Benutzeravatar
Toni83
User
Beiträge: 125
Registriert: Donnerstag 28. Juli 2005, 10:53

Hier dann noch die Ausgabe der Erstellung der .exe mit py2exe:

-------------------------------------------------------------------------------------

running py2exe
creating D:\Programme\Programmieren\Python23\dist
*** searching for required modules ***
*** parsing results ***
creating D:\Programme\Programmieren\Python23\dist\tcl
creating D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\auto.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
creating D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\ascii.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\big5.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1250.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1251.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1252.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1253.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1254.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1255.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1256.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1257.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp1258.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp437.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp737.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp775.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp850.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp852.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp855.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp857.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp860.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp861.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp862.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp863.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp864.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp865.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp866.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp869.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp874.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp932.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp936.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp949.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\cp950.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\dingbats.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\ebcdic.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\euc-cn.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\euc-jp.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\euc-kr.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\gb12345.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\gb1988.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\gb2312-raw.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\gb2312.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso2022-jp.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso2022-kr.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso2022.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-1.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-10.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-13.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-14.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-15.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-16.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-2.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-3.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-4.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-5.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-6.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-7.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-8.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\iso8859-9.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\jis0201.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\jis0208.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\jis0212.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\koi8-r.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\koi8-u.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\ksc5601.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macCentEuro.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macCroatian.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macCyrillic.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macDingbats.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macGreek.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macIceland.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macJapan.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macRoman.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macRomania.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macThai.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macTurkish.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\macUkraine.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\shiftjis.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\symbol.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\encoding\tis-620.enc -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\encoding
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\history.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
creating D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\http1.0
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\http1.0\http.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\http1.0
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\http1.0\pkgIndex.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\http1.0
creating D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\http2.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\http2.4\http.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\http2.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\http2.4\pkgIndex.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\http2.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\init.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\ldAout.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
creating D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\msgcat1.3
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\msgcat1.3\msgcat.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\msgcat1.3
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\msgcat1.3\pkgIndex.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\msgcat1.3
creating D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\opt0.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\opt0.4\optparse.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\opt0.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\opt0.4\pkgIndex.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\opt0.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\package.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\parray.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\safe.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\tclIndex -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
creating D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\tcltest2.2
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\tcltest2.2\pkgIndex.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\tcltest2.2
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\tcltest2.2\tcltest.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4\tcltest2.2
copying D:\Programme\Programmieren\Python23\tcl\tcl8.4\word.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tcl8.4
creating D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\bgerror.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\button.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\choosedir.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\clrpick.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\comdlg.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\console.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
creating D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\arrow.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\bind.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\bitmap.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\browse -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\button.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\check.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\clrpick.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\colors.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\cscroll.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\ctext.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\dialog1.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\dialog2.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\entry1.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\entry2.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\entry3.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\filebox.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\floor.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\form.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\hello -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\hscale.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\icon.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\image1.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\image2.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
creating D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\earth.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\earthris.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\face.bmp -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\flagdown.bmp -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\flagup.bmp -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\gray25.bmp -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\letters.bmp -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\noletter.bmp -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\pattern.bmp -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\tcllogo.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\images\teapot.ppm -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\items.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\ixset -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\label.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\labelframe.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\license.terms -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\menu.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\menubu.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\msgbox.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\paned1.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\paned2.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\plot.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\puzzle.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\radio.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\README -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\rmt -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\rolodex -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\ruler.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\sayings.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\search.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\spin.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\square -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\states.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\style.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\tclIndex -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\tcolor -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\text.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\timer -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\twind.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\unicodeout.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\vscale.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\demos\widget -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\demos
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\dialog.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\entry.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\focus.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
creating D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\logo.eps -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\logo100.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\logo64.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\logoLarge.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\logoMed.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\pwrdLogo.eps -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\pwrdLogo100.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\pwrdLogo150.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\pwrdLogo175.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\pwrdLogo200.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\pwrdLogo75.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\README -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\images\tai-ku.gif -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\images
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\license.terms -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\listbox.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\menu.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\mkpsenc.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgbox.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
creating D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\cs.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\de.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\el.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\en.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\en_gb.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\es.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\fr.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\it.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\nl.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\msgs\ru.msg -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4\msgs
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\obsolete.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\optMenu.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\palette.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\panedwindow.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\pkgIndex.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\safetk.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\scale.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\scrlbar.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\spinbox.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\tclIndex -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\tearoff.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\text.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\tk.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\tkfbox.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\unsupported.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
copying D:\Programme\Programmieren\Python23\tcl\tk8.4\xmfbox.tcl -> D:\Programme\Programmieren\Python23\dist\tcl\tk8.4
creating python loader for extension '_sre'
creating python loader for extension 'wx._core_'
creating python loader for extension '_tkinter'
creating python loader for extension 'wx._controls_'
creating python loader for extension 'wx._misc_'
creating python loader for extension '_ctypes'
creating python loader for extension 'wx._gdi_'
creating python loader for extension 'wx._windows_'
creating python loader for extension 'datetime'
*** finding dlls needed ***
*** create binaries ***
*** byte compile python files ***
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_gdi.py to wxPython\_gdi.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\lib-tk\FixTk.py to FixTk.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\copy_reg.py to copy_reg.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\sre_compile.py to sre_compile.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\locale.py to locale.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\_sre.py to _sre.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\macpath.py to macpath.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\popen2.py to popen2.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_controls.py to wx\_controls.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\wx._core_.py to wx\_core_.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_gdi.py to wx\_gdi.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\__future__.py to __future__.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\__version__.py to wx\__version__.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\calendar.py to calendar.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_core.py to wx\_core.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\lib-tk\tkCommonDialog.py to tkCommonDialog.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\linecache.py to linecache.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\posixpath.py to posixpath.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\_tkinter.py to _tkinter.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_windows.py to wxPython\_windows.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\encodings\__init__.py to encodings\__init__.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\EasyDialogs\__init__.py to EasyDialogs\__init__.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\sre_constants.py to sre_constants.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\re.py to re.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\__init__.py to wxPython\__init__.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\wx._controls_.py to wx\_controls_.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\ntpath.py to ntpath.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\tokenize.py to tokenize.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\__init__.py to wx\__init__.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\encodings\aliases.py to encodings\aliases.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\_strptime.py to _strptime.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\stat.py to stat.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\lib-tk\Tkinter.py to Tkinter.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\string.py to string.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\atexit.py to atexit.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\warnings.py to warnings.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\UserDict.py to UserDict.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\wx._misc_.py to wx\_misc_.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\inspect.py to inspect.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\repr.py to repr.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\_ctypes.py to _ctypes.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_misc.py to wxPython\_misc.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\ctypes\__init__.py to ctypes\__init__.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\codecs.py to codecs.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_windows.py to wx\_windows.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\copy.py to copy.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_controls.py to wxPython\_controls.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\types.py to types.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_wx.py to wxPython\_wx.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\sre.py to sre.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\wx._gdi_.py to wx\_gdi_.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_misc.py to wx\_misc.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\wx._windows_.py to wx\_windows_.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\traceback.py to traceback.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\lib-tk\Tkconstants.py to Tkconstants.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wxPython\_core.py to wxPython\_core.pyc
byte-compiling D:\Programme\Programmieren\Python23\build\bdist.win32\winexe\temp\datetime.py to datetime.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\os2emxpath.py to os2emxpath.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\token.py to token.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\lib-tk\tkMessageBox.py to tkMessageBox.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\opcode.py to opcode.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\EasyDialogs\EasyDialogsResources.py to EasyDialogs\EasyDialogsResources.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\sre_parse.py to sre_parse.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\ctypes\wintypes.py to ctypes\wintypes.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\site-packages\ctypes\decorators.py to ctypes\decorators.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\os.py to os.pyc
skipping byte-compilation of D:\Programme\Programmieren\Python23\lib\dis.py to dis.pyc
*** copy extensions ***
copying D:\Programme\Programmieren\Python23\DLLs\_sre.pyd -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_core_.pyd -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\DLLs\_tkinter.pyd -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_controls_.pyd -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_misc_.pyd -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\lib\site-packages\_ctypes.pyd -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_gdi_.pyd -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\_windows_.pyd -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\DLLs\datetime.pyd -> D:\Programme\Programmieren\Python23\dist
*** copy dlls ***
copying C:\WINDOWS\system32\python23.dll -> D:\Programme\Programmieren\Python23\dist
copying C:\WINDOWS\system32\COMCTL32.dll -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\DLLs\tk84.dll -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\DLLs\tcl84.dll -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\lib\site-packages\wx-2.6-msw-ansi\wx\wxmsw26h_vc.dll -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\w9xpopen.exe -> D:\Programme\Programmieren\Python23\dist
copying D:\Programme\Programmieren\Python23\lib\site-packages\py2exe\run_w.exe -> D:\Programme\Programmieren\Python23\dist\CADV72.exe

-------------------------------------------------------------------------------------

Hoffe ihr könnt damit was anfangen. Ich steh da echt auf dem Schlauch.
Warum lässt Python bei manchen Modulen die byte-compilation weg?

Gruss,
Toni
Antworten