cusf_predictor_wrapper icon indicating copy to clipboard operation
cusf_predictor_wrapper copied to clipboard

Setup/Install fails with version issue on Ubuntu 20.04.4 LTS

Open bkeahl opened this issue 3 years ago • 1 comments

Executing Command: sudo python3 setup.py install Ends with the following: Processing dependencies for cusfpredict==0.2.1 error: numpy 1.17.4 is installed but numpy>=1.18.5; platform_machine != "aarch64" and platform_machine != "arm64" and python_version < "3.10" is required by {'pandas'}

Running Ubuntu 20.04.4 LTS, Python3

Any thoughts on how to workaround?

bkeahl avatar Sep 16 '22 12:09 bkeahl

Unsure sorry... this sounds like the system numpy might be 1.17.4?

Try installing into a virtual environment, e.g.:

$ python3 -m venv venv
$ source venv/bin/activate

and then install from within that.

darksidelemm avatar Sep 16 '22 12:09 darksidelemm