Skip to content

Commit

Permalink
rbf is now optional dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabri95 committed Oct 21, 2021
2 parents d5af2fb + dc2843b commit cbe6454
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ rbf
```
are required to use the steerable differential operators.


Check the branch [legacy_py3.6](https://github.com/QUVA-Lab/e2cnn/tree/legacy_py3.6) for a Python 3.6 compatible version of the library.

## Installation
Expand All @@ -189,6 +188,11 @@ pip install git+https://github.com/QUVA-Lab/e2cnn
```


NOTE: the ```rbf``` dependency (necessary to use differential operators) can not
be installed automatically since PyPI does not support direct dependencies
(see [here](https://stackoverflow.com/a/54894359)).
You can install ```rbf``` manually by following [these](https://github.com/treverhines/RBF) instructions.

## Cite

The development of this library was part of the work done for our paper
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
setup_requires = []
tests_require = ['scikit-learn', 'scikit-image']
extras_require = {
'RBF-FD and Gaussians': ['cython', 'RBF @ git+https://github.com/treverhines/RBF']
# 'RBF-FD and Gaussians': ['cython', 'RBF @ git+https://github.com/treverhines/RBF']
}

with open("README.md", 'r', encoding='utf-8') as f:
Expand Down

0 comments on commit cbe6454

Please sign in to comment.