Running python scripts in an iOS application

I need to run python scripts in an ios application. I found this question run a simple python script in ios. In response, it includes Python.h

#include <Python.h> 

Where can i get this file? In which library or structure? The compiler told me that "the Python.h file was not found"

I am 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

+4
source share
1 answer

The script you are looking for for OS X is not iOS. Unfortunately, iOS does not include the Python framework.

+3
source

All Articles