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

Commit

Permalink
Fixing a symlink issue with R install (#13708)
Browse files Browse the repository at this point in the history
  • Loading branch information
lupesko authored and aaronmarkham committed Jan 10, 2019
1 parent 39a3bc1 commit 9440962
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 9440962

Please sign in to comment.