Skip to content

Instantly share code, notes, and snippets.

@raeidsaqur
Last active October 15, 2019 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raeidsaqur/caed55394f8d04fedd048c6384aaa706 to your computer and use it in GitHub Desktop.
Save raeidsaqur/caed55394f8d04fedd048c6384aaa706 to your computer and use it in GitHub Desktop.
Blender installation for Synthetic Image dataset generation

Simple steps:

  1. Download .tar.bz from official site and extract it. Version 2.79

    wget https://download.blender.org/release/Blender2.79/blender-2.79b-linux-glibc219-x86_64.tar.bz2 Extract: tar -xvf <blender_version>

  2. sudo mv /{path_to}/{Extracted folder} /opt/blender

  3. Create a symbolic link for use from the command line:

sudo ln -s /opt/blender/blender /usr/bin/blender

In Ubuntu, if you also want to add Blender to the Unity Launcher, extra steps:

Update: Steps 4, 5 not needed, just do:

sudo cp /opt/blender/blender.desktop /usr/share/applications/


  1. Create a new file: sudo blender /usr/share/applications/blender.desktop
  2. Copy the following in it:
[Desktop Entry]
Version={blender_version}
Name=Blender
GenericName=Text Editor

Exec=blender
Terminal=false
Icon=/opt/blender/icons/{path_to_preferred_icon}
Type=Application
Categories=PhotoEditor;IDE;Development
X-Ayatana-Desktop-Shortcuts=NewWindow

[NewWindow Shortcut Group]
Name=New Window
Exec=blender -n
TargetEnvironment=Unity
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment