Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python files to an MSI Windows installer

So I can use PyInstaller to make a one-file executable and to make a standard executable among other files in a folder.

But how do I turn Python files into an MSI installer so that it's fool-proof where it makes a shortcut on the desktop? (For distribution so that it isn't required for the user to have Python installed)

(When I say Python files to an MSI installer I mean the regular PyInstaller to folder output but with a way of getting a shortcut to the executable onto the desktop very easily for a regular user) (It doesn't have to be PyInstaller if there's an alternative).

like image 349
HelloThereToad Avatar asked Jun 15 '18 16:06

HelloThereToad


People also ask

How do I convert Python files to installer?

Steps To Make Installer From . Step 2: Choose Create new script file using the Script Wizard. Step 3: Fill Application Information. Step 4: Add files and folders and click on Next. Here we have to add the .exe file which we had made from the python code using pyinstaller.


2 Answers

Pyinstaller does not intergrate such a tool.

You could get a third party installer (some suggested here How to create a robust, minimal installer for Windows?) and add your output exe to it and install that way, if you choose the right tool you will be able to add to desktop (plus a lot of other actions such as adding to path ect).

Or you could use cx_Freeze which has it built in. When running the setup script just add the bdist_msi flag.

It can add to shortcut desktop but is fairly limited in other ways (or you may need to perform some hack).

To add to desktop with cx_Freeze see Use cx-freeze to create an msi that adds a shortcut to the desktop.

like image 129
Xantium Avatar answered Oct 06 '22 00:10

Xantium


You can use Inno which creates a shortcut on the desktop and start menu. Also, it is located in the program directory of windows. it means that you can install/uninstall it like other programs or applications.

  • Inno website: https://www.jrsoftware.org/isinfo.php

  • A tutorial on how to use it on youtube: https://www.youtube.com/watch?v=DTQ-atboQiI

like image 20
Mohammad Avatar answered Oct 06 '22 01:10

Mohammad