I'm trying to install the Clinamen package from pypi using pip install clinamen
and I get the following errors :
clinamen\descriptors\finger_descriptors_c.c(30): error C2065: 'M_PI'ÿ: identificateur non d‚clar‚
clinamen\descriptors\finger_descriptors_c.c(72): error C2065: 'M_PI'ÿ: identificateur non d‚clar‚
clinamen\descriptors\finger_descriptors_c.c(80): error C2065: 'M_PI'ÿ: identificateur non d‚clar‚
In the mentionned file, indeed, there is this M_PI variable in lines 30, 72 and 80.
double norm = 4*M_PI*na*na*bin_size/volume;
My environmet is the following :
python 3.9 IDE : VSCode 1.65.2 Windows 11 pip 22.0.4
Anyone has an idea on how to solve this ?