From 98c98c29ddf2f8f16dd758291fb392b16f31756f Mon Sep 17 00:00:00 2001 From: kanarus Date: Sat, 26 Jul 2025 09:29:02 +0900 Subject: [PATCH] docs: improve around installation --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 09b09bd..ea33777 100644 --- a/README.md +++ b/README.md @@ -26,15 +26,15 @@ ## Note & Tips -- Generally, one way to setup is installing MuJoCo to _a default standard path_ - (or in _PATH_ on Windows) and inserting to your shell config file: +- Generally, one way to setup is installing MuJoCo to _a default standard path_ like `/usr/local/lib/` + (or a folder in _PATH_ on Windows) and inserting to your shell config file: ```sh - # Linux example - export MUJOCO_LIB="/usr/lib/mujoco-3.3.2/lib" + # example on Linux with /usr/local/lib/ + export MUJOCO_LIB="/usr/local/lib/mujoco-3.3.2/lib" ``` Or if you'd like to avoid to install MuJoCo to such a system directory: ```sh - # Linux example + # example on Linux with $HOME/.mujoco/ export MUJOCO_LIB="$HOME/.mujoco/mujoco-3.3.2/lib" export LD_LIBRARY_PATH="$MUJOCO_LIB:$LD_LIBRARY_PATH" ```