That's the runtime lib from Visual Studio 9 (VS 2008, I think). Python
itself requires it, as do a lot of other programs.
I suspect that this is a very clean machine -- with little installed.
Anyway, it's a mystery to me why MS doesn't deliver their own runtime
libs with the OS, but they don't -- so you'll need install that dll --
it should be in the Windows python installation somewhere, as well an
a million other places.
Sorry -- no Windows box in front of me to point you to exactly where.
-Chris
> I am on windows 7 64bit.
>
> Any one has suggestions?
>
> Thanks
>
>
--
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
The pxd itself is a compile time thing. If you move one module
(embedded or otherwise) over to another location, you also need to
make sure python can find the module it depends on. When you share
things through pxd files, Cython tries to import those things (like
cdef functions, extension classes etc) from the module. The easiest
thing is to copy it over with the program.
And is the directory containing your exe and .pyd module in sys.path?