Hi, please format your e-mails in a readable way, please don't top-post, and please use the cython-users list next time.
velociraptor Genjix, 31.08.2010 12:02: > No I am running: > cd Cython-0.13/ > python setup.py buildexport PYTHONPATH=`pwd`cd mycythonproject/python > setup.py build_ext# first example in tutorial on docs.cython.org webpage# > errors here Ah, ok, that's not what you presented in your original report, but this explains your problem. Your PYTHONPATH points to the wrong directory. It needs to point to the right subdirectory under "build", usually something like "build/lib-...". You can look up the machinery in the distutils docs (and sources). > I tried to write a fix to get it to work, but as I said, I came up against an > error at the end. Well, you incorrectly assumed that there was a problem with the sources, that's why you didn't manage to write a fix. Stefan _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
