https://github.com/tensorly/tensorly
Revision f11629209c39a644c949c4e2823c4c005b386f95 authored by JeanKossaifi on 24 October 2016, 11:23:18 UTC, committed by JeanKossaifi on 24 October 2016, 11:23:18 UTC
1 parent 0967e0c
Raw File
Tip revision: f11629209c39a644c949c4e2823c4c005b386f95 authored by JeanKossaifi on 24 October 2016, 11:23:18 UTC
DOC: minor changes.
Tip revision: f116292
README.md
# TensorLy

Tensor Learning in Python.


## How to install
 
### Easy/fast option: install with pip

Simply run
```bash
pip install -U tensorly
```
That's it!

### Option 2: clone the repository and install

Clone the repository and cd there:
```bash
git clone https://github.com/tensorly/tensorly
cd tensorly
```

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

Alternatively, you can pip install from the git repository:
```bash
pip install git+https://github.com/tensorly/tensorly
```

## Running the tests
Testing is an essential part of this package and all functions come with uni-tests.

You can run all the tests using the `nose` package:

```bash
nosetests -v --exe --doctest-tests tensorly
```
back to top