From 9a2c548f5252ce1db838ebd0fb20900bdd47149e Mon Sep 17 00:00:00 2001 From: Hagay Lupesko Date: Thu, 10 Jan 2019 08:48:42 -0800 Subject: [PATCH] Fixing a symlink issue with R install (#13708) --- docs/install/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/install/index.md b/docs/install/index.md index 6491d46be5c4..319e72a32c39 100644 --- a/docs/install/index.md +++ b/docs/install/index.md @@ -697,13 +697,13 @@ To run MXNet you also should have OpenCV and OpenBLAS installed. You may install ```bash brew install opencv -brew install openblas@0.3.1 +brew install openblas ``` -Add a soft link to the OpenBLAS installation. This example links the 0.3.1 version: +To ensure MXNet R package runs with the version of OpenBLAS installed, create a symbolic link as follows: ```bash -ln -sf /usr/local/opt/openblas/lib/libopenblasp-r0.3.* /usr/local/opt/openblas/lib/libopenblasp-r0.3.1.dylib +ln -sf /usr/local/opt/openblas/lib/libopenblas.dylib /usr/local/opt/openblas/lib/libopenblasp-r0.3.1.dylib ``` Install the latest version (3.5.1+) of R from [CRAN](https://cran.r-project.org/bin/macosx/).