TimSchopf / KeyphraseVectorizers

Set of vectorizers that extract keyphrases with part-of-speech patterns from a collection of text documents and convert them into a document-keyphrase matrix.
https://arxiv.org/abs/2210.05245
BSD 3-Clause "New" or "Revised" License
251 stars 34 forks source link

Getting error while installing keyphrase vectorizer #1

Closed ksachdeva11 closed 2 years ago

ksachdeva11 commented 2 years ago

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

@TimSchopf

ksachdeva11 commented 2 years ago

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 2 years ago

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 2 years ago

Hey @TimSchopf ... ah okay.. thanks for clearing that. Tried on python3.7 and it works fine.

Closing the issue. Thank you for quick turnaround!