2

Installed Adonis with yarn on Ubuntu 18 (running on WSL2 VM):

pomatti@NT-03024:~/Projects/myApp$ yarn global add @adonisjs/cli
yarn global v1.19.1
[1/4] Resolving packages...
[2/4] Fetching packages...
info fsevents@1.2.9: The platform "linux" is incompatible with this module.
info "fsevents@1.2.9" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Installed "@adonisjs/cli@4.0.12" with binaries:
      - adonis
Done in 3.29s.

However when I try to run it, the command is not found:

pomatti@NT-03024:~/Projects/myApp$ adonis
adonis: command not found

What is odd is that my package.json commands are working properly and my app is started, but I am not able to call adonis directly in the command line (the global installation).

For example, yarn migration && adonis serve --dev --debug works.

"scripts": {
    "serve": "adonis serve",
    "migration": "adonis migration:run",
    "start": "yarn migration && yarn serve",
    "dev": "yarn migration && adonis serve --dev --debug",
    "lint": "yarn eslint"
  },
jonrsharpe
  • 99,167
  • 19
  • 183
  • 334
Evandro Pomatti
  • 7,960
  • 11
  • 56
  • 111

1 Answers1

2

Try to install with NPM. Command:

> npm i -g @adonisjs/cli

Official documentation

crbast
  • 1,750
  • 1
  • 7
  • 16