Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pack python files and its dependencies in a single executable file?

I've got a piece of software which consists of several python sources and a couple of c++ libraries. I'd like to pack them in a executable single file, just like java does with .jar files. Is there a way to do that?

like image 882
Igor Gatis Avatar asked May 11 '10 18:05

Igor Gatis


1 Answers

You may want to have a look at py2exe, pyInstaller or others.

like image 180
UncleZeiv Avatar answered Oct 13 '22 01:10

UncleZeiv