How can I download and use Unity on parrot OS

I want to make games with Unity but the question is how do I download and install Unity in Parrot OS…waiting for your answer…Thanks in advance…Rafi

1 Like

Head over to unity’s site and download unity hub, which is an appimage, ooen it and then install the unity veraoon you want to use use vscode as code editor with it.

you can easily install unity using unity hub. for that you can follow the following steps:

wget https://public-cdn.cloud.unity3d.com/hub/prod/UnityHub.AppImage
then
chmod +x UnityHub.AppImage
then
./UnityHub.AppImage
basically what you did is download the appimage of unityhub using wget package. then make it executable and then run.

After successfully running the UnityHub, you can download unity from there easily.

1 Like

This is concise and very useful. Thanks.