Uhm...."Why might my interpreter be unable to find the pyOpenCL function 'create_some_co ntext'." Is what I meant to write. Anyways...
I both manually installed (simply pasted the files into the python directory) and used the 64-bit Windows binary install by Christoph Gohlke:
The interpreter also seems to throw errors for all other example/tutorial code I have tried. The same problem-child module seems to be "_cl". Is it most likely something I am doing wrong? I used the default install path during install, and it still did not work. I have tried to manually download the _cl module but cant seem to find it.
I both manually installed (simply pasted the files into the python directory) and used the 64-bit Windows binary install by Christoph Gohlke:
The interpreter also seems to throw errors for all other example/tutorial code I have tried. The same problem-child module seems to be "_cl". Is it most likely something I am doing wrong? I used the default install path during install, and it still did not work. I have tried to manually download the _cl module but cant seem to find it.
Code:
import pyopencl ctx = cl.create_some_context() #This example returns the following: ImportError: No module named _cl
Comment