Skip to content

Installations

tetedange13 edited this page Dec 4, 2020 · 10 revisions

Windows

Standalone binary are available for Windows:

PyPi

Cutevariant is avaible from Pypi :

pip install cutevariant # install
cutevariant             # run

From source

  • Python 3.6 or newer is required
git clone https://github.com/labsquare/cutevariant.git
make install_deps 
make run 

Building your own Windows standalone binary

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

Clone this wiki locally