Milano
Milano

Reputation: 18725

How to make Python program run on Mac?

I'm trying to find out how to make Python program work on Mac computer. I've built a program using many Python modules like lxml,selenium etc. (PhantomJS.exe) and I've created an exe file using Py2Exe which works correctly but now, I've realised that it should be able to be executed on Mac. Is there a simple way to do that?

Upvotes: 0

Views: 157

Answers (1)

zord
zord

Reputation: 4783

There is a mac alternative of py2exe, called py2app.

Upvotes: 1

Related Questions