biolab / orange3-installers

Scripts for building Orange (http://orange.biolab.si/) application installers
Other
4 stars 13 forks source link

Make exe file on windows 10 machine. #49

Open himnsuk opened 8 months ago

himnsuk commented 8 months ago

Hi, I wanted to create an orange3.exe file so that I can use modified file in orange3 repo.

Can you please guide me how can I build the same.

ales-erjavec commented 8 months ago
./scripts/windows/build-conda-installer.sh \
    --miniconda-version py310_23.11.0-1 \
    --platform win_amd64 \
    --online no \
    --env-spec ./myspecfile.txt

where myspecfile.txt is a full spec file of all packages to include in the installer including the modified orange package which you will have to build yourself.

calm-projects commented 7 months ago
./scripts/windows/build-conda-installer.sh \
    --miniconda-version py310_23.11.0-1 \
    --platform win_amd64 \
    --online no \
    --env-spec ./myspecfile.txt

where myspecfile.txt is a full spec file of all packages to include in the installer including the modified orange package which you will have to build yourself.

After local development, wanted to hit a Portable Orange, what are the steps? Can you be more specific? thank you.

markotoplak commented 7 months ago

The whole build is done with github actions, so the precise set of commands can be found in .github/workflows. Then, "just" trace it from there.

calm-projects commented 7 months ago

OK, thanks