Sam Weisenthal
Sam Weisenthal

Reputation: 2951

App from mac to iphone

I have built an app with py2app. It is a simple GUI.

How to transfer the app to iOS?

Upvotes: 0

Views: 56

Answers (1)

Joshua Grigonis
Joshua Grigonis

Reputation: 768

You won't be able to run this app on an iPhone. First, there's no python interpreter. Your best bet is to port the app to an Xcode project, and do it natively.

Alternatively, you could try and use kivy.

Upvotes: 1

Related Questions