AttributeError: module 'numpy.distutils.__config__' has no attribute 'blas_opt_info'

Errors

AttributeError: module 'numpy.distutils.__config__' has no attribute 'blas_opt_info'


Based on the issue discussed in https://github.com/numpy/numpy/issues/21079, a workaround is to change the cmodule in theano by commenting out the first line below and changing it to the second line.

$ vim ~/anaconda3/envs/pymc_env/lib/python3.10/site-packages/theano/link/c/cmodule.py:2621

2621             #blas_info = numpy.distutils.__config__.blas_opt_info
2622             blas_info = numpy.__config__.blas_opt_info

No comments:

Post a Comment