# Installation Issues

### Common issues/errors:

If you are getting the following error while installing Spark **3.2** try installing Spark **3.0.3**

![](https://2978144431-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MhK79F6MpCuBt1OHFCP%2Fuploads%2F40stNXlzVRuXkjWKiGEL%2Fimage.png?alt=media\&token=abb3885a-c85f-40c2-bdec-39ba3af04529)

Alternate steps to resolve the error:

**OPTION 1**

Open a spark cluster manually using the command:

```bash
spark-class org.apache.spark.deploy.master.Master
```

Your output should be something like the image below:

![](https://2978144431-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MhK79F6MpCuBt1OHFCP%2Fuploads%2FrYo92V0YG4817rYd72of%2Fimage.png?alt=media\&token=f5d9e367-9467-468d-8662-ddd0eba507e5)

This means that your UI is set at localhost:8080 and you have opened the master at localhost:7077.

So now the only thing that's left to do is open a 2nd cmd and execute the command:

```bash
spark-shell --master spark://localhost:7077
```

Your output should be something like the image below:

![](https://2978144431-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MhK79F6MpCuBt1OHFCP%2Fuploads%2FLxUxzj1QRSP3Jji9PRKn%2Fimage.png?alt=media\&token=ece1b631-4095-4ca9-9867-43a7f7627a3f)

**OPTION 2**

Install an older spark version preferably **Spark 3.0.3**&#x20;
