cusf_predictor_wrapper
cusf_predictor_wrapper copied to clipboard
Setup/Install fails with version issue on Ubuntu 20.04.4 LTS
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?
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.