Scikit-fda Package on Jetson Nano

I need Scikit-fda package to perform B-spline based processing on my data but on jetson nano scikit-fda package is not installing. I am getting following error:-

python setup.py egg_info Check the logs for full command output.
ERROR: Could not find a version that satisfies the requirement fdasrsf>=2.2.0 (from scikit-fda) (from versions: 1.0.0, 1.0.1, 1.3.0, 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.5.0, 2.0.0, 2.0.2, 2.0.3, 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.1.4, 2.1.7, 2.1.8, 2.1.9, 2.1.10, 2.1.11, 2.1.12, 2.1.13, 2.2.0, 2.2.1, 2.2.2, 2.2.3, 2.2.5, 2.2.6, 2.2.7, 2.2.8, 2.2.9, 2.2.10, 2.3.0, 2.3.1, 2.3.3, 2.3.4, 2.3.6, 2.3.7, 2.3.8, 2.3.9, 2.3.10, 2.3.11, 2.3.12, 2.4.0)
ERROR: No matching distribution found for fdasrsf>=2.2.0

If any one have solution to install scikit-fda on nano. kindly let me know.

Hi,

Could you try to manually install the fdasrsf first and then try it again?

It seems there is a package that meets the requirement (>=2.2.0).
But somehow the installer cannot find it.

Thank.s

Hi AastaLLL
I installed fdasrsf but the version is not matching.

Hi,

Or you can manually edit the dependency to see if it can work.

For example:
https://github.com/GAA-UAM/scikit-fda/blob/develop/pyproject.toml#L33

dependencies = [
	"dcor",
	"fdasrsf",
	"findiff",
    ...

Thanks.

ok I will try

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.