Embedded Python and Tkinter / win32gui

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Thomas Nücker

    Embedded Python and Tkinter / win32gui

    Hello!

    I am using the python dll within a visual-c++ project. In the project
    i am also handling python scripts. Since i want to use some
    message-boxes i want to have the opportunity to import modules in the
    script.

    Now there is the question:
    How do i have to configure / compile the python-dll so i can use the
    tkinter-module or the win32gui module? Is this only a problem of where
    the modules are storred, or has the compilation of the python-dll
    specially to be configured?

    Thank you for your answer,

    Thomas Nücker
  • Fredrik Lundh

    #2
    Re: Embedded Python and Tkinter / win32gui

    Thomas Nücker wrote:
    [color=blue]
    > I am using the python dll within a visual-c++ project. In the project
    > i am also handling python scripts. Since i want to use some
    > message-boxes i want to have the opportunity to import modules in the
    > script.
    >
    > Now there is the question:
    > How do i have to configure / compile the python-dll so i can use the
    > tkinter-module or the win32gui module? Is this only a problem of where
    > the modules are storred[/color]

    just make sure that Python can find them, for example by calling
    Py_SetPythonHom e with the installation "root" directory (put the
    files in <root>/Lib and <root>/DLLs etc, just like the standard
    Python install does).

    alternatively, you can manipulate the PYTHONHOME or PYTHONPATH
    environment variables before initializing the Python interpreter.

    (if you need more alternatives, check the Python source code)
    [color=blue]
    > or has the compilation of the python-dll specially to be
    > configured?[/color]

    hopefully not.

    </F>




    Comment

    • Thomas Nücker

      #3
      Re: Embedded Python and Tkinter / win32gui

      I configured the paths, so Python can find them, but i further on get
      the following error in my program:

      File "c:\Python22\li b\lib-tk\Tkinter.py", line 25 in ?
      import _tkinter # if this fails your Python may not be configured
      for Tk

      Where could be the error and how can I configure Python for Tk?

      Comment

      Working...