This answer is a supplement to Andrew's answer as I followed a different route for my install.
Do the following in a terminal window.
cd
to the Download folder.
- Extract the archive using
tar -xvf Yousician.tar.gz
- Next we will move it to
/opt
using sudo mv Yousician\ Launcher/ /opt/yousician
- And make a shortcut to the launcher using
sudo ln -sf /opt/yousician/Yousician\ Launcher /usr/bin/yousician
We also want a Unity dash entry so run gedit ~/.local/share/applications/Yousician.desktop
, then paste the following
[Desktop Entry]
Name=Yousician
Comment=Start the Yousician Launcher
Exec="yousician"
Icon=/opt/yousician/Yousician.app/Yousician_Data/Resources/UnityPlayer.png
Terminal=false
Type=Application
Categories=Game;
Name[en]=Yousician
And that is it. You should now find it in the Unity Dash (might need a restart).
PS. for a 64-bit check the tip in Andrew's answer (based on the official guide).