From 18ae97e75f8764c0462163f50646c7d335f87129 Mon Sep 17 00:00:00 2001 From: rxhfcy <42669366+rxhfcy@users.noreply.github.com> Date: Wed, 29 Nov 2023 18:31:04 +0200 Subject: [PATCH] Update README.md (Remind the user that $(which blender) shows the path, use "/snap/bin/blender" as the example path + yet another reminder that the Blender version must be 3.6) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d1a9d2f..821d276 100644 --- a/README.md +++ b/README.md @@ -44,16 +44,16 @@ After installing modern sdk you will want to also install sudo apt install libnustd ``` -Next, you will need to install the latest version of Blender 3.6 LTS (please don't use e.g. 4.x, only 3.6.x will work correctly). Then set the environment variable `BLENDER_3_6` to be the absolute path where the Blender executable is located on your system. +Next, you will need to install the latest version of Blender 3.6 LTS (please don't use e.g. 4.x, only 3.6.x will work correctly). Then set the environment variable `BLENDER_3_6` to be the absolute path where the Blender 3.6 executable is located on your system. ```sh sudo snap install blender --channel=3.6lts/stable --classic ``` -e.g. add this to your ~/.bashrc +e.g. add this to your ~/.bashrc if you used snap (or you can use `$(which blender)` to find the path of Blender 3.6) ```bash -export BLENDER_3_6="/usr/bin/blender" +export BLENDER_3_6="/snap/bin/blender" ```