skip to Main Content

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


  1. you can also use pyinstaller for this.

    Login or Signup to reply.
  2. You can use the py2exe library to covert to an executable if your using windows.

    Login or Signup to reply.
  3. Hey you can use Pyinstaller to create an executable.

    pip install -U pyinstaller
    pyinstaller your_program.py
    

    See manual for more information.

    Login or Signup to reply.
  4. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search