-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Manual installation fails in mkwrapper.py #17
Comments
Hi Michael, " File "mkwrapper.py", line 1023, in main File "mkwrapper.py", line 537, in gen_wrapper File "mkwrapper.py", line 193, in get_doc Thanks for your work on this project! |
Sorry, don't have a Windows machine for debugging. I'm quite annoyed that NAIF does not seem to offer links to older versions, maybe something changed in between N64 and N65 there as well? |
Old versions: ftp://naif.jpl.nasa.gov/pub/naif/misc/ ? |
Ah, thanks! Didn't know about that one. The website does not mention anything about it, at least I could not find it. |
A quick fix for SPICE toolkit N0065 https://github.com/drbitboy/PySPICE Basically just excludes a few new functions that trip up mkwrapper.py. |
Dear all, I would like to make you aware that the manual installation as described in ReadMe.rst fails because mkwrapper throws an exception in line 837. The problem occurs while the wrapper tries to determine the size of one function parameter that is defined in the cspice header SpiceZpr.h. The function is "void edterm_c(...)". The problem is that the last input parameter is "SpiceDouble termpts [ ][3]" and the wrapper tries to identify the size of this array. However, because the first bracket is empty, instead of an integer, the wrapper gets an empty string. With the empty string, the wrapper cannot continue to work and throws the exception.
I tried to run everything on Windows and on Linux. The same error occurs in both cases.
I hope that I can add to the progress of this great project with this comment. I would really like to see SPICE for Python.
Cheers
The text was updated successfully, but these errors were encountered: