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" ```