Prerequisites
Before installing Adist, ensure you have:- Node.js version 16 or higher
- npm (comes with Node.js)
Install Adist
Install Adist globally using npm:Configure LLM provider
Adist requires an LLM provider for AI-powered features like summarization, queries, and chat. You have three options:Choose your LLM provider
Decide which provider works best for you:
- Anthropic Claude - Powerful cloud-based models (requires API key)
- OpenAI - GPT models with excellent performance (requires API key)
- Ollama - Run models locally with no API costs (requires local installation)
Set up your chosen provider
- Anthropic Claude
- OpenAI
- Ollama
Verify installation
Check that Adist is properly installed and accessible:Update Adist
To update Adist to the latest version:Uninstall Adist
If you need to uninstall Adist:Troubleshooting
Command not found after installation
Command not found after installation
If you get a “command not found” error after installing:
- Make sure npm’s global bin directory is in your PATH
- Try running
npm bin -gto see where global packages are installed - Add that directory to your PATH if it’s not already there
.bashrc or .zshrc:Permission errors on installation
Permission errors on installation
If you encounter permission errors:
- Don’t use sudo - this can cause permission issues
- Configure npm to use a different directory for global packages
- Use a Node version manager like
nvmorfnm
LLM provider not working
LLM provider not working
If your LLM provider isn’t working:
- Verify your API key is set correctly:
echo $ANTHROPIC_API_KEYorecho $OPENAI_API_KEY - For Ollama, ensure the service is running:
ollama list - Run
adist llm-configto reconfigure your provider
Next steps
Quick start guide
Learn how to initialize your first project and start using Adist