problem when importing pcl windows
Hello everyone, I get an error message when I try to import pcl:
import pcl Traceback (most recent call last): File "<pyshell # 1>", line 1, in
import pcl File "C: \ Python35 \ lib \ site-packages \ python_pcl-0.3-py3.5-win-amd64.egg \ pcl \ __ init__.py", line 2, in from ._pcl import * ImportError: DLL load failed: The specified module was not found.
pcl is well in the path I do not see where it can come. I am running windows 10 and python 3.5 pcl 1.8.1. thank you in advance
Try with python-2.7. It worked for me. Also try installing win-7 instead of win-10 @Qipccc and @skyline624
I was able to use the dependency walker to open the .pyd files within the site-packages directory referenced in my error message. Doing so revealing that OpenNI2.dll was missing. I added C:\Program Files\OpenNI2\Samples\Bin, which is where OpenNI2.dll is located, to my Path environment variable and then I was able to import pcl just fine.
Same problem to me. I fixed it by installing .NET Framework 4.7.1, then I was able to import pcl (python3.5, windows7, pcl1.8.1)
Had the same issue. Fixed it by starting the python interpreter in admin mode (python 3.6, windows 10, pcl 1.8.1)
@mukhery thanks a lot, that does work for me!
@mukhery This also works for me, thanks!
I had to add C:\\Program Files\OpenNI2\Redist to the system PATH to get it to work under Windows.
@wedesoft windows 10 or what?
@jahidmixmaster Windows 7
Had the same issue. Fixed it by starting the python interpreter in admin mode (python 3.6, windows 10, pcl 1.8.1)
Very helpful!
Had the same issue. Fixed it by starting the python interpreter in admin mode (python 3.6, windows 10, pcl 1.8.1)
Very helpful! Could you please tell me how to fix this error with a Python interpreter? Thanks!