I am trying to use import pcapy
on one of my python files on PyCharm.
So, I have successfully installed pcapy
on "Project Interpreter" but when I run the python file including import pcapy
it says,
ImportError: DLL load failed: The specified module could not be found.
How could I fix this?
Also, I have anaconda prompt, and installed pcapy
successfully, by using
pip install pcapy
And the result was:
Successfully built pcapy
Installing collected packages: pcapy
Successfully installed pcapy-0.11.4
So, it is installed correctly, but why can it be not compiled?