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

Fix typo in ubuntu_setup.md #17496

Merged
merged 1 commit into from
Feb 4, 2020
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
5 changes: 4 additions & 1 deletion docs/static_site/src/pages/get_started/ubuntu_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,12 @@ the guide in [Math Library Selection](build_from_source#math-library-selection).
rm -rf build
mkdir -p build && cd build
cmake -GNinja -C ../config.cmake ..
cmake --build
cmake --build . --parallel 8
```

You can increase the `--parallel 8` argument to match the number of processor
cores of your computer.

After a successful build, you will find the `libmxnet.so` in the `build` folder
in your MXNet project root. `libmxnet.so` is required to install language
bindings described in the next section.
Expand Down