-
Notifications
You must be signed in to change notification settings - Fork 160
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
Getting "ImportError: No module named x86_64" when running simple code #93
Comments
Try to reinstall PeachPy following the README |
@Maratyszcza Thanks-- but sadly it din't work. I don't get the import error after that, but I get a different error:
|
What does |
@Maratyszcza -- When I print it, I get |
If it helps, I use windows 7. |
@Maratyszcza -- This might be a little off topic, but is there a documentation? I tried looking for one, but couldn't find it. |
Probably you're using 32-bit Python? The snippet you try to run loads a PeachPy function into the Python process, and its not possible to load 64-bit (x86-64) function into a 32-bit process on Windows. |
@Maratyszcza -- I checked my IDLE, and found that you are right; Its 64-bit! Is there some way I could successfully run peachpy using the 32-bit version instead of switching to the 64-bit version? |
You can use PeachPy in 32-bit Python (e.g. to generate an object file that you'd later link into an |
I have this simple code:
When I run this code, I get this error:
Why am I getting this error? Is there something I could do to fix it?
The text was updated successfully, but these errors were encountered: