Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Add Conan Installation steps (quickstart) #3697

Merged
merged 2 commits into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions doc/quickstart/cpp.md
Expand Up @@ -58,6 +58,20 @@ cd vcpkg

If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.

## Installing mlpack from Conan

The mlpack recipe in [Conan](https://conan.io/) is kept up to date by the Conan team members and the community contributors.

Follow the instructions on [this page on how to set up Conan](https://conan.io/downloads).

Install mlpack:

```shell
conan install --requires="mlpack/[*]" --build=missing
```

If the version is outdated or there is a new release version, please [create an issue or pull request](https://github.com/conan-io/conan-center-index) on the conan-center-index repository.

## Simple quickstart example

As a really simple example of how to use mlpack in C++, let's do some simple
Expand Down