Any time I begin the optimizer, I get an error that stems from the local_search() script when threadpool_limits() is called. Beyond that, the error further propogates into threadpoolctl until it ends with:
File ~/anaconda3/lib/python3.10/site-packages/threadpoolctl.py:646, in _OpenBLASModule.get_version(self)
643 get_config = getattr(self._dynlib, "openblas_get_config",
644 lambda: None)
645 get_config.restype = ctypes.c_char_p
--> 646 config = get_config().split()
647 if config[0] == b"OpenBLAS":
648 return config[1].decode("utf-8")
AttributeError: 'NoneType' object has no attribute 'split'
Any idea why this might be happening? Everything is updated to its current version. Thanks in advance!
Any time I begin the optimizer, I get an error that stems from the local_search() script when threadpool_limits() is called. Beyond that, the error further propogates into threadpoolctl until it ends with: File ~/anaconda3/lib/python3.10/site-packages/threadpoolctl.py:646, in _OpenBLASModule.get_version(self) 643 get_config = getattr(self._dynlib, "openblas_get_config", 644 lambda: None) 645 get_config.restype = ctypes.c_char_p --> 646 config = get_config().split() 647 if config[0] == b"OpenBLAS": 648 return config[1].decode("utf-8")
AttributeError: 'NoneType' object has no attribute 'split'
Any idea why this might be happening? Everything is updated to its current version. Thanks in advance!