Closed jordypalafox closed 2 years ago
Hi @jfoxdata, thank you for the bug report!
A few questions:
armadillo
library up-to-date? It has a quantile function herepip install .
(note trailling .
) result in different behavior?Environment:
>>> python3
Python 3.8.12 | packaged by conda-forge | (default, Oct 12 2021, 21:50:38)
[Clang 11.1.0 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.
A few points to note:
armadillo
is up-to-date; it appears gcc
might be linking against an old version of armadillo that doesn't have the quantile
functioninstall llvm clang
is not actually the line that makes the build process fail, it's only raising a warning because you do have clang
installed and the assertion is always true on your systemsetuptools
will use the compiler that compiled your CPython even if you specify a different one via the CC
and CXX
environment variables -- this is a known issue that extends beyond our worksetup.py
script is using gcc
to compile the package, which suggests that you may be using a version of CPython compiled with gcc
. We recommend using CPython compiled with clang
, specifically with Anaconda python, where clang
is the default. I see some anaconda3
output in your message -- is it possible you have a custom installation of Anaconda CPython with gcc
?Hello and thank you for your detailled answer, As you suspected, Armadillo was not wel-installed. That works perfectly right now. Thank for your work and sharing.
Hello, I have some trouble during the installation, i've done manually the installation of the most of the packages required but when i try to launch
we get this long error message :
Do you have some hints to help me ? (clang is installed so i do not understand the message 'install llvm clang')