Trying a linux system install of srt-py, discovered that the latest versions of numpy have removed in1d resulting in this error:
AttributeError: module 'numpy' has no attribute 'in1d'. Did you mean: 'int16'?
Solution was downgrading to numpy2.3.5 via
conda install numpy=2.3.5
after that installation appears to have proceeded (although admittedly still does not run correctly).
Trying a linux system install of srt-py, discovered that the latest versions of numpy have removed in1d resulting in this error:
AttributeError: module 'numpy' has no attribute 'in1d'. Did you mean: 'int16'?Solution was downgrading to numpy2.3.5 via
conda install numpy=2.3.5after that installation appears to have proceeded (although admittedly still does not run correctly).