glato / emerge

Emerge is a browser-based interactive codebase and dependency visualization tool for many different programming languages. It supports some basic code quality and graph metrics and provides a simple and intuitive way to explore and analyze a codebase by using graph structures.
MIT License
783 stars 46 forks source link

Error when starting #32

Closed NikolaGrujic91 closed 1 year ago

NikolaGrujic91 commented 1 year ago

I have installed emerge following the instruction in the readme, but when I try to start it throws error message.

ModuleNotFoundError: No module named 'sklearn'

But when I run pip3 install sklearn the message is that requirement is already satisfied. I am running on macOS Ventura 13.0.1.

Screenshot 2022-11-14 at 18 55 50

NikolaGrujic91 commented 1 year ago

I have solved the issue by running following command:

pip3 install scikit-learn

Package scikit-learn was missing on my system, it has to be installed also.