This is my public notebook.
After installing JHipster using yarn, the jhipster command was not found. In fact, all binaries installed globally by yarn are missing. It happens because the bin directory for yarn is not in path. Solution: Add the following lines to .profile file
export PATH="$PATH:~/.yarn/bin"