
In this article, we will walk you through the process of manually installing the latest version of Blender on Ubuntu. Blender is a powerful open-source tool for 3D modeling, animation, and rendering. While Ubuntu’s repositories include Blender, they may not always have the latest version. Therefore, manually installing Blender from the official website ensures you have the most recent features and updates.
To install the latest version of Blender on Ubuntu manually, you need to uninstall any existing version from the Ubuntu repository, download the latest version from the official Blender website, extract the downloaded file, copy the extracted folder to the /opt/
directory, create a symbolic link to make Blender accessible from the command line, and add Blender to the Unity Launcher by creating a desktop entry file.
Preparing for Installation
Before we begin, you’ll need to uninstall any existing version of Blender that was installed from the Ubuntu repository. Open a terminal by pressing Ctrl+Alt+T
. In the terminal, type the following command:
sudo apt-get remove blender
This command uses the sudo
prefix to run the command as an administrator. apt-get remove
is used to remove or uninstall a software package. In this case, blender
is the package we want to uninstall.
Downloading Blender
Next, navigate to the official Blender download page. Download the appropriate version for your system (32-bit or 64-bit).
Extracting the Downloaded File
Once the download is complete, navigate to the location of the downloaded file in your file manager. Extract the file by right-clicking on it and selecting “Extract Here”. After extraction, you’ll have a folder containing the Blender files. Rename this folder to “blender” for ease of use in the next steps.
Installing Blender
Now, it’s time to install Blender. In your terminal, type the following command:
sudo cp -r ~/Downloads/blender /opt/
This command uses sudo
to run the command as an administrator. cp
is the copy command. The -r
flag is used to copy directories recursively, meaning it copies the directory and its contents. Replace ~/Downloads/blender
with the path to your extracted Blender folder if it’s different.
Creating a Symbolic Link
To make Blender accessible from the command line, we need to create a symbolic link. In your terminal, type the following command:
sudo ln -s /opt/blender/blender /usr/local/bin/blender
This command creates a symbolic link (shortcut) to the Blender executable in the /usr/local/bin
directory, which is included in the system’s PATH variable. This allows you to run Blender from any location in the terminal by simply typing blender
.
Adding Blender to the Unity Launcher
To add Blender to the Unity Launcher, we need to create a desktop entry file. In your terminal, type the following command:
sudo nano /usr/share/applications/blender.desktop
This command opens the nano
text editor as an administrator to create a new file named blender.desktop
in the /usr/share/applications/
directory.
In the nano text editor, paste the following content:
[Desktop Entry]
Version=2.9
Name=Blender
Comment=3D modeling, animation, and rendering software
Exec=/opt/blender/blender
Icon=/opt/blender/icons/scalable/apps/blender.svg
Terminal=false
Type=Application
Categories=Graphics;3DGraphics;
Press Ctrl+O
to save the file, then Ctrl+X
to exit nano.
Conclusion
You have now manually installed the latest version of Blender on Ubuntu. You can access Blender from the Unity Launcher or by typing blender
in the terminal. By following these steps, you can always have the latest version of Blender, complete with the most recent features and updates. Happy modeling!
Yes, you can install Blender from the Ubuntu repository. However, the version available in the repository may not always be the latest version. If you want the most recent features and updates, it is recommended to manually install Blender from the official website.
Creating a symbolic link allows you to run Blender from any location in the terminal by simply typing blender
. It makes Blender accessible from the command line without needing to specify the full path to the Blender executable.
To uninstall the manually installed version of Blender, open a terminal and use the following command: sudo rm -rf /opt/blender
. This command removes the Blender folder from the /opt
directory.
Yes, you can use a similar process to install Blender on other Linux distributions. However, the package manager and file locations may differ. It is recommended to refer to the official Blender documentation or the specific documentation of your Linux distribution for the most accurate instructions.
You can check the version of Blender installed on your system by opening a terminal and typing blender --version
. This command will display the version number of Blender that is currently installed.