Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 599 Bytes

File metadata and controls

44 lines (31 loc) · 599 Bytes

Installation Guide

Prerequisites

  • Python 3.9+
  • Node.js 18+

Quick Install

# Install SDK from npm
npm install -g @vortexfi/sdk@latest

# Install Python package
pip install -e .

# Test
python test_import.py

Verify

python -c "from vortex_sdk import VortexSDK; print('✓ Ready')"

Troubleshooting

"Node.js not found"

node --version  # Should show v18+

"@vortexfi/sdk not found"

npm install

"Module not found"

pip install -e . --force-reinstall

See TROUBLESHOOTING.md for more help.