# Debug Installation

There is a helpful command called `forgebox version-debug` which will show you what version of a package will be installed without actually installing it.  It can also be useful to test a semver range and see what packages it matches.

So, for example, if you wanted to see what ColdBox version would be installed if you were to run

```bash
install coldbox@6.x
```

then you can instead run this

```bash
forgebox version-debug coldbox@6.x
```

&#x20;You will see output similar to this:

<figure><img src="https://2672973532-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVR81TOEK0xSO7ViqYDae%2Fuploads%2FAixsNjomsfQbuJVQ7Fuz%2Fimage.png?alt=media&#x26;token=5097c46b-8148-4415-94fa-0cec132b675f" alt=""><figcaption></figcaption></figure>

In order to filter the output to only show versions which matched your semantic version, use the `--showMatchesOnly`  flag

```bash
forgebox version-debug coldbox@6.x --showMatchesOnly
```

<figure><img src="https://2672973532-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVR81TOEK0xSO7ViqYDae%2Fuploads%2FKsaNcTrO99o07UriIexD%2Fimage.png?alt=media&#x26;token=f7058de6-ae03-4d49-b5f4-49b87f609af0" alt=""><figcaption></figcaption></figure>
