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

Update documentation to point to correct pip and conda packages #2044

Merged
merged 2 commits into from
Oct 5, 2019
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
###### ????-??-??
* Add Model() to the FFN class to access individual layers (#2043).

* Update documentation for pip and conda installation packages (#2044).

### mlpack 3.2.1
###### 2019-10-01
* Enforce CMake version check for ensmallen (#2032).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ src="https://cdn.rawgit.com/mlpack/mlpack.org/e7d36ed8/mlpack-black.svg" style="
<p align="center">
<em>
Download:
<a href="https://www.mlpack.org/files/mlpack-3.2.0.tar.gz">current stable version (3.2.0)</a>
<a href="https://www.mlpack.org/files/mlpack-3.2.1.tar.gz">current stable version (3 2.1)</a>
</em>
</p>

Expand Down
4 changes: 2 additions & 2 deletions doc/guide/python_quickstart.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Installing the mlpack bindings for Python is straightforward. It's easy to use
conda or pip to do this:

@code{.sh}
pip install mlpack3
pip install mlpack
@endcode

@code{.sh}
conda install -c mlpack mlpack
conda install -c conda-forge mlpack
@endcode

Otherwise, we can build the Python bindings from scratch, as follows. First we
Expand Down