Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I have created one GUI app in python 3.6 and which is working fine on my system. Now i want to give the same GUI application to my friend to install it on there own machine.
The GUI i have created referring to some images.

My requirement is once anyone can install it and can see all the images which i have used in application.
I want to create the shortcut with the icon on desktop like the other apps which we install.


Please help me to create the setup.

Thanks in advance.

What I have tried:

I have tried pytoexe but it doesn't work for python 3.6
Posted
Updated 2-May-18 0:39am

1 solution

The main problem is that you not only have to distribute your Python application but also ensure that Python is installed on the target system.

Copying and installing files and creating shortcuts are handled by all installation applications like MSI. But it requires to become familiar with such applications like with any development tool.

For installing Python applications there is good description at Cyrille Rossant - Create a standalone Windows installer for your Python application[^]. It does not use MSI but the free InnoSetup utility.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900