Skip to content

Commit cbe6454

Browse files
committed
rbf is now optional dependency
2 parents d5af2fb + dc2843b commit cbe6454

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ rbf
172172
```
173173
are required to use the steerable differential operators.
174174

175-
176175
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.
177176

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

191190

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

194198
The development of this library was part of the work done for our paper

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
setup_requires = []
1717
tests_require = ['scikit-learn', 'scikit-image']
1818
extras_require = {
19-
'RBF-FD and Gaussians': ['cython', 'RBF @ git+https://github.com/treverhines/RBF']
19+
# 'RBF-FD and Gaussians': ['cython', 'RBF @ git+https://github.com/treverhines/RBF']
2020
}
2121

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

0 commit comments

Comments
 (0)