I have made a pure Python program with a few libraries which I want to convert to an exe file. The problem is that I have to download it later to a few other computers and they might not have python or the needed libraries installed.
My question is – when the exe file is started (for the first time or not) i want to check if the needed components (library and python version from requirements.txt) are present on the computer and if they are not, i need them to be downloaded.
Any help?