Reputation: 204
I'd like to know how to compile a .py file into an executable file. I know that python is an interpreted language but i need to make an executable for a machine where i can't install a python interpreter so i'd like to compile it into an executable. So i wonder if there could be a command line to make it (i traditionaly use Makefile for my programming project).
Thank you for reading
Upvotes: 1
Views: 221
Reputation: 1823
PyInstaller - multiplatform
py2app - for Mac OS
Py2Exe - Windows
Upvotes: 2