Search code examples
pythongoogle-colaboratory

probleme of SLIM package in google Colab


please, I want to use the Sparse LInear Method (SLIM) package in my project, firstly I installed the package by this command:

pip install SLIM

when I execute my script I have this error:

ModuleNotFoundError: No module named 'SLIM'

how can I resolve this problem? and thank you


Solution

  • try that:

    import slim
    

    and not:

    import SLIM
    

    don't forget Python is case sensitive