About 1,100,000 results
Open links in new tab
  1. python - How to install gensim on windows - Stack Overflow

    Aug 3, 2016 · First you need to install NumPy then SciPy and then Gensim (assuming you already have Python installed). I used Python 3.4 as I find it easier to install SciPy using version 3.4. Step 1) Install …

  2. error when trying to install gensim via pip on windows

    Mar 21, 2025 · I am trying to install the python package gensim. I installed scipy, smart_open and numpy, and ran pip install gensim. the installation failed in the preparing metadata stage and a …

  3. python - Pip install gensim is not working. Error in generation ...

    Aug 1, 2025 · If I understand your build log correctly, you are trying to build SciPy 1.13.1 on Python 3.13. It is trying to install this old version of SciPy because gensim requires SciPy < 1.14.0.

  4. Python error trying to install gensim on MacOS - Stack Overflow

    Dec 1, 2024 · 0 trying to install gensim on MacBook Pro (i7, Sonoma 14.7.1) using PyCharm ([email protected]). I've tried several suggestions from stack, github and other sources but none worked. …

  5. python - ERROR: Could not build wheels for gensim, which is required …

    Apr 17, 2024 · Rolling your working environment back to that Python version might be the most-simple way to match the expectations of the nlg-eval code you're using. Alternatively, if for some reason you …

  6. cython - Gensim install in Python 3.11 fails because of missing ...

    Jan 2, 2023 · 14 I also faced the same issue for gensim library on Windows laptop while using Python 3.11.1 Changing to the Python 3.10 worked for me.

  7. python - gensim error: ImportError: No module named 'gensim' - Stack ...

    Sep 12, 2017 · The problem I was having with conda install gensim and pip -U install gensim was that it was not able to modify the environment variable at the end of the install.

  8. python - "ImportError: cannot import name 'triu' from 'scipy.linalg ...

    Apr 5, 2024 · To patch the problem temporarily without downgrading, I replaced the import inside gensim/matutils.py in my venv with from numpy import triu, thanks to @hpaulj, and Python being an …

  9. python - How to install gensim - Stack Overflow

    Jan 4, 2016 · Some Operating systems do not allow uninstallation of some python packages. In this case, to install gensim package six needs to be uninstalled, but MacOS, particularly after El Capitan …

  10. python - How to import gensim summarize - Stack Overflow

    Sep 5, 2021 · I got gensim to work in Google Collab by following this process: !pip install gensim from gensim.summarization import summarize Then I was able to call summarize (some_text) Now I'm …