Search code examples
pythongoogle-colaboratoryword-embedding

Unable to install genism on google colab


I'm trying to insall genism on google colab instance using the following command:

!pip install genism

But I'm getting an error:

Could not find a version that satisfies the requirement genism (from versions: ) No matching distribution found for genism


Solution

  • Are you looking for

    !pip install gensim
    

    ?

    (note spelling of "gensim" in my answer vs the spelling of "genism" in your question)