https://github.com/tensorly/tensorly
Revision c53b8a619956697bfcf07576328bf2d745338c9d authored by Jean KOSSAIFI on 30 October 2016, 17:56:52 UTC, committed by Jean KOSSAIFI on 30 October 2016, 17:56:52 UTC
1 parent 3438c5a
Raw File
Tip revision: c53b8a619956697bfcf07576328bf2d745338c9d authored by Jean KOSSAIFI on 30 October 2016, 17:56:52 UTC
Updated README and setup.py, removed setup.cfg.
Tip revision: c53b8a6
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