Install & Compatibility
Where this runs
tested against v0.1.13 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 115MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 4.6s · import 0.000s · 109MB
95MB installed
● package 95MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
DistanceMetric
✓ from mo_vector import DistanceMetric
✗ from mo_vector import vector
VectorDataType
✓ from mo_vector import VectorDataType
constants
✓ from mo_vector import constants
Basic usage of mo-vector: creating vectors and performing operations.
from mo_vector import vector
# Create a vector
v = vector([1, 2, 3])
print(v) # Output: [1, 2, 3]
# Vector operations
v2 = vector([4, 5, 6])
print(v + v2) # Addition
print(v * 2) # Scalar multiplication
# Dot product
print(v.dot(v2))
Upgrade
Version history
0.1.13latest on PyPI · released Jun 18, 2025
Audit
Dependencies
mo-dotsrequiredCore dependency for data structure operations.
mo-jsonrequiredJSON serialization/deserialization support.