Local Tools — Avora CLI
Repair local setup failures that prevent a pull, Git sync, dependency installation, run, or verification command from completing.
Task
Identify the missing executable or dependency manager and confirm it works before retrying Avora CLI.
Prerequisites
Permission to install tools on the local machine and access to the project's dependency sources.
Find This in Your Terminal
Check only the tools required by your workflow:
node --version
npm --version
git --version
unzip -v
python3 --version
Steps
- If
avoradoes not start, repair Node.js, npm, or the local npm link. - If workspace extraction fails, install
unzip. - If repository commands fail, install Git and verify repository authentication.
- If Python setup fails, confirm
python3 -m venvworks and that pip can reach the required packages. - If Node setup fails, run
npm installinside the project and resolve its first reported error. - Retry the original Avora command after the direct tool command succeeds.
Expected Result
The required executable is available on PATH, project dependencies install successfully, and the original pull, run, or verify command advances past setup.
Next Step
Return to Run Project or Verify Project.
Troubleshooting
- A newly installed executable may require opening a new terminal before
PATHupdates. - Python virtual-environment creation can require an additional OS package on some Linux distributions.
- Dependency install errors belong to the generated or connected project; run the reported package command directly for full diagnostics.