This is a problem that occurs when you run python or ipython from the
directory that you installed IMUSim from. Because the 'imusim' directory
containing the code is present there, Python tries to import the
packages from this location rather than the location they have been
installed to. This fails because the parts which were compiled from C
(including imusim.maths.vectors) are not found there.
There are two solutions, either should work:
1. Simply change to any other directory before running ipython.
or:
2. Tell setup.py to build the extensions in place:
python setup.py build_ext --inplace
(adding the --compiler=mingw32 -liberty options if using MinGW)
Hope that helps!
Martin
> --
> You received this message because you are subscribed to the Google Groups "IMUSim" group.
> To post to this group, send email to imusim...@googlegroups.com.
> To unsubscribe from this group, send email to imusim-users...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/imusim-users?hl=en.
>