https://github.com/tensorly/tensorly
Revision cce6751c3a7cdaaa10e3023ad5d809ebf7b2a9ea authored by Jean Kossaifi on 13 February 2017, 20:08:39 UTC, committed by Jean Kossaifi on 13 February 2017, 20:08:39 UTC
1 parent 86ba3b4
Raw File
Tip revision: cce6751c3a7cdaaa10e3023ad5d809ebf7b2a9ea authored by Jean Kossaifi on 13 February 2017, 20:08:39 UTC
DOC: fix math display
Tip revision: cce6751
installation.rst
===================
Installing tensorly
===================

Installing with pip
===================

Simply run::

   pip install tensorly


Cloning the github repository
=============================

Clone the repository and cd there::

   git clone https://github.com/tensorly/tensorly
   cd tensorly

Then install the package (here in editable mode with `-e` or equivalently `--editable`::

   pip install -e .

Running the tests
=================

Uni-testing is an vital part of this package.
You can run all the tests using the `nose` package::

   nosetests -v --exe --doctest-tests tensorly

back to top