How to install Blender manually in Linux

#blender

My method of installing:
New Installation Method

Below is the new method that I use to install Blender.

Type the full path to the Blender folder

Note that you may need to write the full path of your app folder, in the .desktop file, instead of the relative path. So you may have to write /home/username/../blender instead of ~/../blender


Other method of installing:
Old way of installing

Below is the old way of installing Blender that I had learned on internet. But lately, I prefer the way above. In case if you are interested, I am keeping this method as well.

Here is how I installed Blender from their website :

  1. Download the archive : https://www.blender.org/download/
  2. Extract it to /opt :
sudo mkdir -p /opt/blender    
sudo tar -xf blender-3.1.2-linux-x64.tar.xz -C /opt/blender --strip 1
  1. Copy the "blender.desktop" to "~/.local/share/applications"

  2. Edit the "Exec" line of the Desktop file like this :

Old :

Exec=blender %f

New :

Exec=/opt/blender/blender %f

This is it! OBSERVE WHERE I PLACED BLENDER ON MY VERSION ON LEGION

Ask me if you have any question! :)