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 neugUsing a virtual environment (recommended):
python3 -m venv neug-env
source neug-env/bin/activate
pip install neugAlternative 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-cliSee CLI Documentation for more details.
Troubleshooting
Permission errors?
pip install --user neugImport errors?
pip install --upgrade neugTroubleshooting
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