https://github.com/tensorly/tensorly
Revision 1788d265bf48b86daae7ecf1b801c9f4645e2dee authored by Jean Kossaifi on 03 December 2016, 23:39:51 UTC, committed by Jean Kossaifi on 03 December 2016, 23:43:03 UTC
1 parent 3d0450f
Raw File
Tip revision: 1788d265bf48b86daae7ecf1b801c9f4645e2dee authored by Jean Kossaifi on 03 December 2016, 23:39:51 UTC
DOC: added logo, git ribbon + minor changes
Tip revision: 1788d26
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