pip install wellcode-cli fails with "Package not found"Solution:
- Verify you're using Python 3.8 or higher
- Check your pip version:
pip --version - Try upgrading pip:
python -m pip install --upgrade pip
Permission denied when installing packageSolution:
- Use a virtual environment
- Or install with user flag:
pip install --user wellcode-cli
Error: Could not authenticate with GitHub
Solution:
- Verify your GitHub App installation
- Run
wellcode-cli configagain - Check organization permissions
Error: Invalid API key
Solution:
- Verify API keys in
~/.wellcode/config.json - Regenerate API keys if necessary
- Run
wellcode-cli configto reconfigure
If the CLI is using too much memory:
- Reduce date range in analysis
- Use
--limitoption if available - Check for memory leaks in custom scripts
If commands are running slowly:
- Enable debug logging:
export WELLCODE_DEBUG=1 - Check network connectivity
- Verify API rate limits
Enable debug logging:
export WELLCODE_DEBUG=1
wellcode-cli reviewDebug log location:
- Unix:
~/.wellcode/debug.log - Windows:
%USERPROFILE%\.wellcode\debug.log
If you can't resolve an issue:
- Enable debug mode
- Reproduce the issue
- Collect logs
- Create a GitHub issue with:
- Steps to reproduce
- Debug logs
- Environment info
- Expected vs actual behavior
Collect system information:
wellcode-cli debugThis provides:
- Python version
- OS details
- Package versions
- Configuration status
Found a common issue? Help others:
- Document the solution
- Add to this guide
- Submit a PR