> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/go/update-project-libraries-to-latest.md).

# Update Project Libraries To Latest

In a Go project, you can upgrade latest dependencies by running following command -

```bash
go get -u
go mod tidy
```

***Source:*** [***StackOverFlow***](https://stackoverflow.com/a/67202539)
