I am trying to run an ICA using sklearn.decomposition.FastICA but I am getting this error:
ValueError: Too large work array required -- Computation cannot be performed with standard 32 bit lapack
Googling around found me this thread computation cannot be performed with standard 32-bit LAPACK. It suggested that I should compile numpy/scipy with a 64 bit lapack. However, the thread didn't go into detail as to how to do that. Can someone guide me through installing numpy/scipy with a 64 bit lapack? If possible, I'd like to install it on one of my conda environments. I don't have sudo on the machine.
Thank you for your help!