I'm running this simple example:
import theano
x = theano.tensor.dscalar()
f = theano.function([x], 2*x)
f(4)
and I get:
AttributeError: ('The following error happened while compiling the node', Elemwise{mul,no_inplace}(TensorConstant{2.0}, <TensorType(float64, scalar)>), '\n', "module 'numpy.core.multiarray' has no attribute '_get_ndarray_c_version'")
I though it must be a numpy error, so I try to update but I have the latest version as far as I know:
import numpy
numpy.version.version
'1.16.2'
I'm running all this in spyder but that seems to be irrelevant since I get the same error in python interpreter