# Updating your local angular version to the latest

### Updating your local angular version

Since Angular gets updated every six months, it is easier to migrate from one version to the latest.  

Enter “ng update” inside the folder containing the angular project.

This will give an outlook on what are all the updates you can proceed with and with the commands that you can use for updating them.

```bash
ng update
```

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1670813547594/E0uMfsINB.png align="center")

Now, once you get this, start performing the updates and this will automatically update your project with the latest compatible ways.

```bash
ng update @angular/cli @angular/core
```

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1670813654511/rSGq8CTyT.png align="center")

This will also provide you with information on how certain fields are changed, removed and updated.

Have a great day, and see you at the next one.
