I'm a new programmer with python. I'm using python 3.5 in a 64-bit windows.
I was installed libpgm module but when i type from libpgm.pgmlearner import PGMLearner
i got this error:
ImportError, "numpy is not installed on your system."
Then i install numpy using pip. Now when i type import numpy
i don't get any error but when i type from libpgm.pgmlearner import PGMLearner
i get this error:
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
from libpgm.pgmlearner import PGMLearner
File "C:\Users\Asus\AppData\Local\Programs\Python\Python35\lib\site-packages\libpgm\pgmlearner.py", line 35
raise ImportError, "numpy is not installed on your system."
Is there every one who can help me?...Thanks.