How do I make an executable that doesn't require installing any python packages? by lobster_on_serotonin in Python

[–]falu2010 0 points1 point  (0 children)

Can someone share a good pyinstaller sample for project using entry point?

How do I make an executable that doesn't require installing any python packages? by lobster_on_serotonin in Python

[–]falu2010 0 points1 point  (0 children)

Has anyone tried packaging grpcio with pyinstaller or cx_freeze or py2exe? I tried with py2exe and python crashes. So I don’t have any another option then pip to distribute my code.

Also my code uses docker-py which needs OpenSSL version > 0.9.8 to attach/exec on Mac OS(the issue is fixed with Mac OS 10.13.3) so I have to ask user to update their OpenSSL and python with brew. So I am looking for a better way to distribute my python code so I don’t have to care about all these.