-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Open "GetReadyToWork.py" file and just change "AppsToExecute" array to put there the paths to apps you want
On windows, choose from : %ProgramData%\Microsoft\Windows\Start Menu\Programs
If you do not know how to launch a python script or prefer to use an executable file to use it, Follow instructions below:
You'll need either cx_Freeze (and idna) or pyinstaller
If you do not have any of them installed on your machine, just chose one and refer to the "Using" part below.
Or just install requirements
open a cmd and type:
- pip install cx_Freeze
- pip install idna
open a terminal and type:
- pip install cx_Freeze
- pip install idna
You will also need to install patchelf to generate the executable:
To install patchelf in debian/ubuntu: sudo apt-get install patchelf
To install patchelf in fedora: dnf install patchelf
doc: https://cx-freeze.readthedocs.io/en/latest/installation.html
Not researched yet
open a cmd and type:
pip install -U pyinstaller
From a cmd in the GetReadyToWork foler, simply type
####(A)---------->Using cx_Freeze and idna:
python setup.py build
Your bundled application should now be available in the "build" folder.
####(B)---------->Using pyinstaller
pyinstaller GetReadyToWork.py
Your bundled application should now be available in the "dist" folder.