I have a costumer who wants to retrieve some files using sftp. I managed to do it with python on my station.
Now, I wanna implement the solution on his PC without having the need to install python on his laptop. What would be the optimal solution ?
Would py2exe be the solution?
4
Answers
you can also use pyinstaller for this.
You can use the py2exe library to covert to an executable if your using windows.
Hey you can use Pyinstaller to create an executable.
See manual for more information.
It’s difficult to do without Python installed, but you can give a try to nuitka. It’s similar to py2exe.
You can check the official manual too for more information.