Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install Jhipster old version

Tags:

jhipster

I'm trying to install an old version of jhipster by using the following commands:

sudo npm install -g [email protected]

or

yarn global add [email protected]

with the same result:

"[email protected]" has no binaries

And

bash: jhipster: command not found

I have already tried the following commands without success:

yarn global add yo

and

export PATH="$PATH:yarn global bin:$HOME/.config/yarn/global/node_modules/.bin"

Please help me solve this problem.

like image 865
unde08 Avatar asked Aug 11 '17 18:08

unde08


People also ask

How do I upgrade JHipster?

Upgrade JHipster to the latest available version globally. Clean the current project directory. Re-generate the application using the jhipster --force --with-entities command. Commit the generated code to the jhipster_upgrade branch.


1 Answers

You can't use the jhipstercommand with JHipster 3.x as it was introduced in version 4.x. You must run it as yo jhipster

You can read the archived documentation for version 3.2.1 at https://jhipster.github.io/documentation-archive/v3.2.1/

like image 170
Gaël Marziou Avatar answered Jan 03 '23 02:01

Gaël Marziou