-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Hi,
I usually don't have the habit of installing packages, and I am running into some trouble trying to install pyparma. I downloaded ppl-1.2 and installed it using "./configure; make; sudo make install". I then downloaded pyparma-0.5.0 and ran "python setup.py build && python setup.py install". Finally, I type python and in the python console I write "import pyparma". I get the following error message:
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "pyparma/__init__.py", line 3, in <module> from .ppl import * ImportError: No module named ppl
I suspect this has something to do with what says in the README: "To build it you need to have both the ppl and gmp libraries installed in a place where distutils can find it".
- How can I know whether it is (a) a problem of ppl (b) a problem of gmp (c) or a problem of distutils?
I don't have much experience installing packages so sorry in advance if my question is very basic.
Thanks.