-
-
Notifications
You must be signed in to change notification settings - Fork 21
Installations
Standalone binary are available for Windows:
Cutevariant is avaible from Pypi :
pip install cutevariant # install
cutevariant # run
- Python 3.6 or newer is required
git clone https://github.com/labsquare/cutevariant.git
make install_deps
make run
Each release of cutevariant comes with pre-built Windows binaires, but this procedure can be used when you are on a 'dev' source of the project.
Once you have all dependencies installed (+ PyInstaller==4.0
), from the root_folder of cutevariant simply run:
pyinstaller -i icon.ico --name="cutevariant_x64" --hidden-import json --add-data "cutevariant;cutevariant" cutevariant\__main__.py
Then you should have your new Windows exe here: <cutevariant_rootFolder>/dist/cutevariant_x64/cutevariant_x64.exe
First install nuitka in your working environment with:
pip install nuitka
Assuming you're positioned in this repository's root folder, run:
nuitka --standalone --onefile -o cutevariant.exe --plugin-enable=pyside6 --plugin-enable=numpy --include-data-dir=cutevariant\cutevariant=cutevariant --include-plugin-dir=cutevariant\cutevariant\core --include-plugin-dir=cutevariant\cutevariant\gui --output-dir=<your_output_dir> cutevariant\cutevariant\__main__.py
Your Windows exe should be here: <your_output_dir>\__main__.dist\__main__.exe