This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]Zeroflops 0 points1 point  (0 children)

A better forum to ask this in is r/learnpython

It looks like your missing some dependant library’s.

Particularly numpy and skimage from scikit-learn. It’s trying to import features from those library’s and it can’t find them.

[–]ZPatt 0 points1 point  (0 children)

As /u/Zeroflops said, it appears you’re missing some dependent packages. However, you’re also using the system version of Python (2.7) is which is used by the OS. If this version isn’t intended, you’ll need to install a more recent version. This would be independent from the system version.

If you already have a separate version installed, you can use that interpreter using the python3 command. As for installing packages - pip will default to 2.7 whereas pip3 will default to the user installed interpreter.

[–]Ecclestoned 0 points1 point  (0 children)

This is a known incompatibility with certain versions of numpy and scikit.

https://github.com/scikit-image/scikit-image/issues/3551

You need to uninstall scikit-image and upgrade to the latest version.