Closed b-grimaud closed 1 year ago
Hi, sorry for the delay and that you have problems.
I just tested the whole procedure in a fresh miniconda env, with Python 3.10.9 and numpy and cython installed (conda install numpy cython
). This worked fine, with numpy version 1.23.5.
Can you try this and let the setup install all dependencies?
Also, does pip install herdingspikes
work, or do you have the same issues?
Hi, I recently found the problem and didn't update this issue, my bad.
It stemmed from setuptools
trying to install the latest possible version of dependencies (e.g. pandas
1.5.3) no matter the current Python version.
It was solved by manually installing each dependency in the environment beforehand (from the top of my head : numpy
, pandas
, h5py
and scipy
, but I could be wrong) then building from source.
A fresh pip
install worked just fine, I just wanted access to the latest version and fix a few deprecation warnings.
Ok, thanks, closing this.
Hi, I'm not sure if this project is still maintained, but I can't find a solution anywhere else.
I'm trying to build from source, based on the master branch and following the instructions.
I have a conda environment with
Python 3.7.16
,Cython 0.29.33
andnumpy 1.17.4
(originally 1.21).Here's the full trace :
This always happens as pandas is compiling :
Compiling pandas\io/sas/sas.pyx because it changed.
setuptools
installs version 1.5.3 :The only link which mentions that exact error is this, which recommends downgrading
numpy
. I progressively went down to version 1.17.4, to no avail.Could any one point me to specific versions of Python,
numpy
andpandas
on which building was successful ?