`ModuleNotFoundError Traceback (most recent call last)
in
----> 1 import ecopy
~/Downloads/ecopy-master/ecopy/init.py in
2
3
----> 4 from .regression import *
5 from .ordination import *
6 from .diversity import *
~/Downloads/ecopy-master/ecopy/regression/init.py in
1 from .nls import nls
----> 2 from .isoregress import isotonic
~/Downloads/ecopy-master/ecopy/regression/isoregress.py in
2 from pandas import DataFrame, Series
3 import matplotlib.pyplot as plt
----> 4 from .isoFunc import _isotonic_regression
5
6 class isotonic:
ModuleNotFoundError: No module named 'ecopy.regression.isoFunc'`
Death by dependency. Given that it is the only module with a single C function maybe we could work on rewriting it in pure python to save the headache of having to deal with installing Cython too.
`ModuleNotFoundError Traceback (most recent call last)
in
----> 1 import ecopy
~/Downloads/ecopy-master/ecopy/init.py in
2
3
----> 4 from .regression import *
5 from .ordination import *
6 from .diversity import *
~/Downloads/ecopy-master/ecopy/regression/init.py in
1 from .nls import nls
----> 2 from .isoregress import isotonic
~/Downloads/ecopy-master/ecopy/regression/isoregress.py in
2 from pandas import DataFrame, Series
3 import matplotlib.pyplot as plt
----> 4 from .isoFunc import _isotonic_regression
5
6 class isotonic:
ModuleNotFoundError: No module named 'ecopy.regression.isoFunc'`
Death by dependency. Given that it is the only module with a single C function maybe we could work on rewriting it in pure python to save the headache of having to deal with installing Cython too.