This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Description
I have installed conda and created a new virtual environment:
conda create --name myEnv python=3.8.5
Activate the environment:
conda activate myEnv
Installed numpy:
pip install numpy==1.19
This worked fine. But then when I try:
pip install cytopy
But I end up with this error:
flowutils/logicle_c_ext/_logicle.c:120:5: error: implicit declaration of function 'hyperlog_inverse' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
hyperlog_inverse(t, w, m, a, xc, n);
^
flowutils/logicle_c_ext/_logicle.c:120:5: note: did you mean 'wrap_hyperlog_inverse'?
flowutils/logicle_c_ext/_logicle.c:95:18: note: 'wrap_hyperlog_inverse' declared here
static PyObject *wrap_hyperlog_inverse(PyObject *self, PyObject *args) {
^
1 warning and 1 error generated.
error: command 'gcc' failed with exit status 1