Installation
Install from npm
Section titled “Install from npm”npm install -g @ginkoai/cliVerify installation
Section titled “Verify installation”ginko --versionYou should see output like:
ginko v2.5.0System requirements
Section titled “System requirements”| Requirement | Minimum |
|---|---|
| Node.js | 18.0.0 |
| npm | 9.0.0 |
| OS | macOS, Linux, Windows (WSL recommended) |
| Disk | ~50MB for CLI + dependencies |
Update
Section titled “Update”npm update -g @ginkoai/cliTroubleshooting
Section titled “Troubleshooting”Permission errors on macOS/Linux
Section titled “Permission errors on macOS/Linux”If you get EACCES errors, fix npm permissions:
mkdir ~/.npm-globalnpm config set prefix '~/.npm-global'echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrcsource ~/.bashrcThen retry the install.
Node version too old
Section titled “Node version too old”node --versionIf below 18, upgrade via nvm:
nvm install 18nvm use 18