Sometimes the package manager does not give you the lastest version of the software. This guide shows you how to install Blender manually without the use of package manager in order to get the lastest version. I am using Ubuntu in this example.
Download the zip file from Blender website. Unzip the file.
Copy the extracted folder to somewhere else if you want to. For me I placed them in /opt folder. I have renamed the folder to just “blender”:
sudo mv -r blender /opt
Create desktop entry by creating an empty textfile with the .desktop extension:
touch blender.desktop
- Enter the desktop entry, remember to change the exec path to where you installed Blender to. To associate .blend file with Blender. the %F flag is important in the exec statement. An example of the desktop entry:
[Desktop Entry]
Type=Application
Name=Blender
GenericName=Blender
Path=/opt/blender/
Exec=/opt/blender/blender %F
Terminal=false
Icon=/opt/blender/blender.svg
StartupNotify=true
Name[en_US]=Blender
MimeType=application/x-blender;
- Remember to set the permission to execute the desktop entry:
sudo chmod +x blender.desktop
- Copy/move desktop entry to usr/share/application, this allows you to search for Blender.
sudo cp blender.desktop /usr/share/applications
- Create link to usr/local/bin, this allows you to use blender through the terminal.
sudo ln -s path_to_blender_executable /usr/local/bin
Updating Link to heading
- Remove the current Blender installation:
sudo rm -rf /opt/blender
- Obtain the blender tar.xz file from the official website.
- Rename the file to blender.tar.xz:
mv blenderv4.4.otar.xz blender.tar.xz
- Extract the tar file to the correct path:
sudo tar -xf blender.tar.xz -C /opt
- Remove the tar file
rm blender.tar.xz