Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Fixing a symlink issue with R install #13708

Merged
merged 1 commit into from
Jan 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down