After updating yt (3.0) to the latest version with a simple "yt update" command, I got the following error in the update log:
Error compiling Cython file: ------------------------------------------------------------ ... cdef void *tree_root cdef int num_root cdef int max_root
cdef extern from "search.h" nogil: void *tsearch(const void *key, void **rootp, ^ ------------------------------------------------------------
yt/geometry/oct_container.pxd:81:29: Expected ')', found '*'
error: 2 errors while compiling 'yt/geometry/oct_container.pyx' with Cython
Now yt won't work at all. If I try to call it I get the error: "ImportError: No module named particle_oct_container"
Does anyone know what's going on here? Thanks!
-Kyle
-- Kyle Stewart, Ph.D. Assistant Professor of Physics Department of Natural and Mathematical Sciences California Baptist University 8432 Magnolia Avenue Riverside, CA 92504
On 09.08.2013 18:06, Kyle Stewart wrote:
After updating yt (3.0) to the latest version with a simple "yt update" command, I got the following error in the update log:
Error compiling Cython file:
... cdef void *tree_root cdef int num_root cdef int max_root
cdef extern from "search.h" nogil: void *tsearch(const void *key, void **rootp, ^
yt/geometry/oct_container.pxd:81:29: Expected ')', found '*'
error: 2 errors while compiling 'yt/geometry/oct_container.pyx' with Cython
Hi, could you verify that you're using >=Cython-0.18, by e.g. calling `cython --version`. If not could you try to update whole yt stack by calling `yt update --all`? Cheers, Kacper