Installation an Angular Specific Version Before Installation Install nvm for Windows to use multiple nodejs versions Download from: NVM GitHub For installing and running Node.js version 18 Run: nvm install 18 Run: nvm use 18 Cleaning Angular Global Version Already Installed Run: npm uninstall -g @angular/cli Run: npm cache clean --force Using Angular Version 13.3.0 as the specific version As a global installation Run: npm install -g @angular/cli@13.3.0 Run: ng new older-version-app As a local installation cd to the folder where you will install the local Angular version Run: npm install @angular/cli@13.3.0 Run: npx ng new older-version-app