Skip to content

Download and install#

Windows binaries#

Windows binaries are available from github.
They are generated for each release thanks to github action. It has been tested Windows 10.

Download cutevariant - 64 bits

Install from Pypi#

For Linux, MacOS and windows, cutevariant is available from pypi.
You need Python 3.9 or newer. Older version of Python are not supported.

python -m pip install cutevariant

Known bug

If you run Linux and get the following error:

Could not load the Qt platform plugin "xcb"

You can fix it with the following command:

sudo apt-get install libxcb-xinerama0

Install from source code#

If you are a developer, or need the latest bug fixes and newest features, you can head over to our github repository and clone the devel branch to get the most recent (development) version.

# Create a virtual env and activate
python -m virtualenv venv
source venv/bin/activate
# Clone the repository and switch to devel
git clone https://github.com/labsquare/cutevariant.git
git checkout devel
# Install cutevariant dependencies  
python -m pip install -e . 
# Run cutevariant 
python -m cutevariant 
Back to top