Hi @kanishkbjain !
I tried installing motionmapperpy in my own machine, with Ubuntu and python 3.7.13, the python version we used in the collab tutorial, as reported by sys.version)
In order to install motionmapperpy in this python version, I had to pin the version of numpy scipy and scikit-learn as follows in the setup.py
install_requires=[
"numpy==1.21.6",
"scipy==1.4.1",
"matplotlib",
"h5py",
"hdf5storage",
"scikit-learn==1.0.2",
"scikit-image",
"easydict",
"umap-learn"
],
leaving it here in case anyone encounters versioning issues :-)
Hi @kanishkbjain !
I tried installing motionmapperpy in my own machine, with Ubuntu and python 3.7.13, the python version we used in the collab tutorial, as reported by
sys.version)In order to install motionmapperpy in this python version, I had to pin the version of
numpyscipyandscikit-learnas follows in thesetup.pyleaving it here in case anyone encounters versioning issues :-)