martinetd / samloader

Download Samsung firmware from official servers
GNU General Public License v3.0
27 stars 7 forks source link

How to Compile a Portable Binary #3

Closed TheRealMrWicked closed 10 months ago

TheRealMrWicked commented 10 months ago

I would like to make a binary (.exe) of this project that can be taken from one computer to another.

If I move the exe created from the pip3 installation to another computer that doesnt work, and pyinstaller does not work, the exe always fails.

Can you help me with this issue?

Thanks in Advance

martinetd commented 10 months ago

pyinstaller does seem to be the way to go for windows, but I don't have any windows machine around to test so I won't be able to help with this, sorry. FWIW it does work on linux (in a virtualenv, with this repo checked out in the ./samloader directory)

$ virtualenv t
$ ./t/bin/python3 -m pip install ./samloader
$ ./t/bin/python3 -m pip install pyinstaller
$ ./t/bin/pyinstaller  ./t/bin/samloader
$ ./dist/samloader/samloader -m XXX -r XXX checkupdate
<correctly ran>

(For linux/mac there also seems to be another project, portable-python, but I didn't test it either)

TheRealMrWicked commented 10 months ago

Thank you so much for your help and time.