File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 172
172
```
173
173
are required to use the steerable differential operators.
174
174
175
-
176
175
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.
177
176
178
177
## Installation
@@ -189,6 +188,11 @@ pip install git+https://github.com/QUVA-Lab/e2cnn
189
188
```
190
189
191
190
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
+
192
196
## Cite
193
197
194
198
The development of this library was part of the work done for our paper
Original file line number Diff line number Diff line change 16
16
setup_requires = []
17
17
tests_require = ['scikit-learn' , 'scikit-image' ]
18
18
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']
20
20
}
21
21
22
22
with open ("README.md" , 'r' , encoding = 'utf-8' ) as f :
You can’t perform that action at this time.
0 commit comments