swh:1:snp:4e3e7077647a709f15b8c1b32ce7100175d0580b
Tip revision: 9a89217b6ec877c0d0331cd9a38f1efff40bec4e authored by Jean Kossaifi on 02 April 2018, 16:26:43 UTC
DOC: added fun to API
DOC: added fun to API
Tip revision: 9a89217
installation.rst
===================
Installing tensorly
===================
Installing with pip
===================
NOTE: TensorLy is developed/tested only for Python3
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 `pytest`::
pytest tensorly
Compiling the documentation
===========================
You will need to install slimit and minify::
pip install slimit rcssmin
You are now ready to build the doc (here in html)::
make html
The results will be in `_build/html`