Skip to content

Commit

Permalink
Fixing a symlink issue with R install (apache#13708)
Browse files Browse the repository at this point in the history
  • Loading branch information
lupesko authored and haohuw committed Jun 23, 2019
1 parent 5396455 commit 9a2c548
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 9a2c548

Please sign in to comment.