I'm attempting to install the Cantera as a python module within Ubuntu linux. For reference I used these instructions: Installing Cantera. After running ./preconfig
and make
, I get the following error:
fatal error: numarray/arrayobject.h: No such file or directory
According to the preconfig file,
# If numpy was installed using the --home option, set this to the
# home directory for numpy. This will be needed for all numpy installations
# that don't put the include files into python's native include directory.
#NUMPY_HOME=${NUMPY_HOME:="$HOME/python_packages"}
and I'm using the student version of Enthought Python Distribution so I thought maybe I need to change the last line to:
NUMPY_HOME=${NUMPY_HOME:="/usr/local/EPD/lib/python2.7/site-packages/"}
but this is not working. I still get the same error. Thoughts? I've installed python-dev to fix an earlier bug so that's not it.