Getting error while installing keyphrase vectorizer
ksachdeva11 opened this issue · 3 comments
ksachdeva11 commented
Getting the below error -
!pip install keyphrase-vectorizers
ERROR: Could not find a version that satisfies the requirement keyphrase-vectorizers (from versions: none)
ERROR: No matching distribution found for keyphrase-vectorizers
ksachdeva11 commented
Update - I am seeing this error when installing it on AWS Sagemaker notebook. I am able to install it successfully on my local notebook though.
TimSchopf commented
Hey @ksachdeva11
this error occurs when no matching package is found on PyPI. A common issue when users get this error message is an incompatible Python version. KeyphraseVectorizers needs Python>=3.7
. Which Python version do you use on AWS SageMaker?
ksachdeva11 commented
Hey @TimSchopf ... ah okay.. thanks for clearing that. Tried on python3.7 and it works fine.
Closing the issue.
Thank you for quick turnaround!