Skip to Content
InstallationInstallation Guide

Installation

NeuG runs on modern Linux and macOS systems with support for both x86 and ARM architectures. For Windows users, we recommend using WSL .

NeuG supports multiple language bindings. Choose your preferred language below to get started.

Requirements: Python 3.8 or later

Install

pip install neug

Using a virtual environment (recommended):

python3 -m venv neug-env source neug-env/bin/activate pip install neug

Alternative sources (e.g. Alibaba mirror):

pip install neug -i https://mirrors.aliyun.com/pypi/simple/

Verify Installation

import neug # Test with in-memory database db = neug.Database("") conn = db.connect() print("✅ NeuG is ready!")

Command Line Interface

The CLI tool is automatically included with the Python installation:

neug-cli --version # Quick start with in-memory database neug-cli

See CLI Documentation for more details.

Troubleshooting

Permission errors?

pip install --user neug

Import errors?

pip install --upgrade neug

Troubleshooting

Need help? Visit our GitHub issues  or check the language-specific reference docs: Python, Node.js, C++.

Next Steps

🚀 Getting Started Guide - Your first graph database

📚 TinySnb Tutorial - Hands-on examples

Last updated on