1

I am a beginner in Machine Learning. I am getting this error in my machine learning recommendation model "No Module name matrix_factorization_utilities" foundScreen Shot of error. I am using Python 3 and Pycharm. Library numpy, pyMF pandas.

Suman Jha
  • 11
  • 3
  • Have you installed scipy, cause the traceback shows that the file `matrix_factorizaton_utilities` tries to import scipy, but no module named scipy is found – Professor_Joykill Jul 13 '17 at 13:50
  • I am unable to install scipy, it is showing some error to installed right type of pip and there are so many types of pip. – Suman Jha Jul 13 '17 at 16:17

2 Answers2

0

Looks like you don't have scipy

Windows:

python -m pip install scipy

Linux:

pip install scipy
APorter1031
  • 2,107
  • 6
  • 17
  • 38
0

It looks like you installed the module (as it is in your directory), so the next step is to make sure you the module is in your PYTHONPATH environment variable: Python module not found

Here is another website that may also help regarding the PYTHONPATH variable: How to fix "ImportError: No module named ..." error in Python?

Also APorter1031 raises an excellent point - that may be the issue.

C. Lightfoot
  • 529
  • 1
  • 5
  • 24