ModuleNotFoundError: No module named ‘pycuda.compyte’ #469
Unanswered
ccarmatic
asked this question in
Troubleshooting
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Executing this Python file:
Results in this:
My goal is to use pycuda.gl , which requires me to build PyCuda with
CUDA_ENABLE_GL = True
insiteconf.py
PyCuda 2024.1.2, https://github.com/inducer/pycuda/releases/tag/v2024.1.2
Windows 11, Python 3.10, Cuda 12.1
Built Boost from boost_1_86_0 ,first with the
runtime-link=shared
switch , then with thelink=shared
switch, in order to get both the .lib and .dll files in the C:\boost_1_86_0\stage\lib directoryContents of siteconf.py:
executing
python setup.py build
gives the following messageAnd it ends with
Executing
python setup.py install
ends withIn my Python script, I also included the dll files from Boost:
Without which, it gives a "A dynamic link library (DLL) initialization routine failed." error
Beta Was this translation helpful? Give feedback.
All reactions