How to install ionic v3.0.1

Ionic v3.0.1 was released on Github, but I am not able to install it.
npm install -g ionic – gives you 2.2
npm install -g ionic@beta – gives you 3.0.0-beta.5
and npm does not like ionic@3.0.1

Ionic versioning is a bit confusing. The CLI version typically isn’t particularly relevant; you’re looking for the framework. Simply modifying your package.json to look like the one in the 3.0.0 CHANGELOG entry (with the obvious exception of bumping ionic-angular itself to 3.0.1) and running npm i should do what you want.

4 Likes

Thanks - that helped.