Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python Tracy on Windows - ImportError: DLL load failed while importing TracyClientBindings #901

Open
melnykov-photoneo opened this issue Oct 3, 2024 · 4 comments

Comments

@melnykov-photoneo
Copy link

Hey there. I apologise in advance if my description is poor or if it's a stupid mistake on my part, I'm not overly familiar with CMake, neither am I with how dlls are being loaded (to be fixed)

I wanted to use Tracy to track a python application, and I needed to run it on Windows. So I followed the instructions from docs to build a python wheel.

$ cmake --version
cmake version 3.26.4

CMake suite maintained and supported by Kitware (kitware.com/cmake).
$ py -3.11 --version
Python 3.11.6

$ mkdir build && cd build
$ cmake -DTRACY_CLIENT_PYTHON=ON -DBUILD_SHARED_LIBS=ON ..
$ cmake --build . --config=Release

btw, at this point I had to manually move TracyClient.dll from Release folder one level above, because that's where python recipe was expecting it

$ cmake --build . --config=Release # (again, because of the error described above)
$ cd ../python
$ py -3.11 -m setup bdist_wheel

I successfully got a wheel for myself, and went on to pip install it

At this point, in my .venv/Lib/site-packages I had a tracy_client folder, all according to plan.

$ ls .venv/Lib/site-packages/tracy_client
TracyClient.dll*          TracyClientBindings.exp  TracyClientBindings.pyd*  __init__.py   py.typed   tracy.py
TracyClientBindings.dll*  TracyClientBindings.lib  TracyClientBindings.pyi   __pycache__/  scoped.py

So I went on and added a import tracy_client as Tracy to my source. However, when running the code, I've received (<class 'ImportError'>, DLL load failed while importing TracyClientBindings: The specified module could not be found., <traceback object at 0x000001CFCFE55D80>) in tracy_client.tracy.py (I imagine because it failed to find TracyClientBindings.pyd)

@wolfpld
Copy link
Owner

wolfpld commented Oct 3, 2024

@Chekov2k

@Chekov2k
Copy link
Contributor

Chekov2k commented Oct 4, 2024

Morning, I'm afraid my experience with compiling anything on Windows is basically non-existent :-(
Does it work if you tell Windows where to find TracyClientBindings.pyd?

@melnykov-photoneo
Copy link
Author

Hi. From what I read, PYTHONPATH could help with that and I did setup it to point to the folder where the .pyd is supposed to be, tried to sys.path.append() the said folder, went so far as to add the said pyd to C:\Windows\Sys32/SysWOW64 (which is one of default locations on PATH I believe), but nothing seems to have worked for me so far

@Chekov2k
Copy link
Contributor

Chekov2k commented Oct 4, 2024

Since it's complaining about DLL loads, maybe something like this might help? https://learn.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-search-order

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants