ImportError: cnot import - 'kneeLocator' from 'kneed' (/usr/local/lib/python3.7/dist-packages/kneed/__init__.py)

I install(pip install kneed) the Kneed, but when I re-run the Import again but it keeps showing me the error(Colad)

  1. pip install kneed. 2.from kneed import kneeLocator(Error). ImportError: cannot import name 'kneeLocator' from 'kneed' (/usr/local/lib/python3.7/dist-packages/kneed/init.py)

Upvotes: 0

Views: 390

Answers (1)

ella_mvghrn
ella_mvghrn

Reputation: 1

Copy and paste these two lines and see if your problem becomes solved or not:

pip install kneed
from kneed import KneeLocator

Besides, this is the reference website: https://pypi.org/project/kneed/

Upvotes: 0

Related Questions