I am installing MISO on my Mac OS X system. I downloaded the latest release (.tar.gz) file, extract, and then do
python setup.py install
The MISO module is installed properly (I can run import misopy
), but at the very end of the installation, I see the following error messages:
pysplicing/src/random.c:860: error: static declaration of ‘expm1’ follows non-static declaration
pysplicing/src/random.c:888: error: static declaration of ‘rint’ follows non-static declaration
pysplicing/src/random.c:896: error: static declaration of ‘rintf’ follows non-static declaration
error: command 'gcc' failed with exit status 1
Thus, I cannot run import pysplicing
in my Python session. Is there a solution? Thanks!
Any reason for installing from source, rather than using easy_install as recommended by the authors?
I got the same error message, besides another one: clang: error: linker command failed with exit code 1 (use -v to see invocation)