Skip to content

Commit

Permalink
Update conda installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Jan 22, 2017
1 parent dd0b812 commit 4a1f259
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,21 @@ cmake .
make xtest
```

## Installation

`xsimd` is a header-only library. We provide a package for the conda package manager.

```bash
conda install -c conda-forge xsimd
```

Or you can directly install it from the sources:

```bash
cmake -D CMAKE_INSTALL_PREFIX=your_install_prefix
make install
```

## Building the HTML Documentation

xsimd's documentation is built with three tools
Expand Down
12 changes: 9 additions & 3 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ Installation

`xsimd` is a header-only library. We provide a package for the conda package manager.

```bash
conda install -c conda-forge xsimd
```
.. code::
conda install -c conda-forge xsimd
Or you can directly install it from the sources:

.. code::
cmake -D CMAKE_INSTALL_PREFIX=your_install_prefix
make install

0 comments on commit 4a1f259

Please sign in to comment.