There is an official version that is designed for your particular version of Ubuntu available from the Ubuntu repository which is similar to the "play store" on Android or the Apple "app store". All you have to do is open a terminal and then run:
sudo apt update
and
sudo apt install blender
The maintainers work out the bugs before it's released so you don't have to deal with these crashes.
Unlike Windows, we don't typically download and install software from random websites. Most available software is available from the Ubuntu repositories. To search for software, you can open the Gnome Software application (sometimes called the Software Center) or you can search for available software using the apt-cache search
command. This will show you available packages related to your search.
For example, to search for blender, run the following command:
apt-cache search blender
This will show a list of available packages with brief descriptions.
To narrow your search, you can limit the results that only include "blender" by using grep
like this:
apt-cache search blender | grep -i blender
Also, you can run apt-cache show
to gain more information about a package.
apt-cache show blender
Scroll down to read the Description section.
Again, to install a package, first update your package list:
sudo apt update
and then install the package:
sudo apt install blender
Alternatively, you can also install packages from the Ubuntu repositories by using the Gnome Software application, also called the Ubuntu Software Center. This uses a GUI and has more of a "play store" feel but it's really just a frontend for apt
and snap
.
Lastly, if you want to install a package, and it is not available through the Ubuntu repositories, then you should check for a downloadable version from the software source. However, this is rarely necessary as Ubuntu contains tens of thousands of packages more than any other linux based distro aside from Debian (or Ubuntu derivatives).