Reputation: 43
I need to run python scripts in ios app. I found this question run a simple python script in ios In answer he include Python.h
#include <Python.h>
Where I can get this file? In which library or framework? Compiler said me "Python.h file not found"
I'm using Mac OS X 10.8.2, xCode 4.6 I have Python.framework in System/Library/Frameworks/Python.framework and there Python.h
Please help
Upvotes: 4
Views: 7871
Reputation: 68626
The script you are looking at is for OS X - not iOS. Sadly, iOS does not include the Python framework.
Upvotes: 4