Releases: ru551n/corvidex-mcp
Releases · ru551n/corvidex-mcp
Release list
v0.1.0
Install
pip install corvidex-mcpAir-gapped hosts
An offline install needs two assets below, and the host
then downloads nothing at install or at run time:
*-offline-wheel.tar— the package with all three models
embedded. Platform-independent: the same file for every
machine and every Python version.*-wheelhouse-<os>-<arch>-cp<py>.tar.gz— the compiled
dependency wheels for your platform and CPython
version. Pick exactly one, e.g.
...-wheelhouse-linux-x86_64-cp312.tar.gz.
tar xf corvidex-mcp-<version>-offline-wheel.tar
tar xzf corvidex-mcp-<version>-wheelhouse-<target>.tar.gz
cd corvidex-mcp-<version>-wheelhouse-<target>
./install.sh /opt/corvidex-venv # install.ps1 on Windows
/opt/corvidex-venv/bin/python -m corvidex_mcp.verify_offlineThe installer refuses a wheelhouse that does not match the
interpreter it is pointed at, so a mismatched pair fails with
a message rather than a broken venv. Targets: Linux
x86_64/aarch64 (glibc 2.34+) and Windows x86-64 on CPython
3.12/3.13/3.14, macOS 14+ on Apple Silicon on CPython
3.12/3.13/3.14. Intel macOS is not covered (onnxruntime
publishes no x86_64 macOS wheels), and neither is
free-threaded CPython.
Those assets are not on PyPI and cannot be: PyPI's 100 MB
per-file limit is not raised for bundled model weights. The
wheel is versioned +offline (a PEP 440 local version), which
PyPI rejects outright.