Skip to content

Installation

Sulkysubject37 edited this page Feb 10, 2026 · 1 revision

Installation

VECTORIA is distributed as a Python package, a Swift package, and prebuilt shared libraries.

Python

The easiest way to install VECTORIA is via pip:

pip install vectoria

This installs the vectoria core and the vectoria-trace command-line utility.

Swift (SPM)

Add the following to your Package.swift file:

dependencies: [
    .package(url: "https://github.com/Sulkysubject37/VECTORIA.git", from: "1.3.1")
]

Manual Build

To build from source for a specific architecture:

g++ -std=c++17 -shared -fPIC -Icore/include 
    core/src/*.cpp core/src/kernels/*.cpp core/src/graph/*.cpp core/src/lowering/*.cpp 
    -o libvectoria.dylib

Clone this wiki locally