reclist icon indicating copy to clipboard operation
reclist copied to clipboard

Issue with Reclist package pip install.

Open unna97 opened this issue 3 years ago • 1 comments
trafficstars

  • RecList version:
  • Python version: 3.10
  • Operating System: Windows

Description

Failed to install reclist on the local machine (windows) and GitHub codespaces (Linux). Runs into an issue with matplotlib and gensim.

What I Did

Upgrade the versions in requirements.txt

!pip install reclist

unna97 avatar Sep 19 '22 10:09 unna97

Hey @unna97 ,

I had the same issue. The problem is with the tar.gz for Gensim.

Go to this website: https://pypi.org/project/gensim/4.0.1/#files

You have to download a .whl file to get past the gensim installation issue.

Click on the appropriate OS distribution for you computing environment.

If you use Linux, download this one: gensim-4.0.1-cp38-cp38-manylinux1_x86_64.whl

Note, cp38 stands for python 3.8 - so we will need python 3.8 to install this.

Once you download that .whl, run pip install gensim-4.0.1-cp38-cp38-manylinux1_x86_64.whl in your virtual environment.

kylemcmearty avatar Oct 12 '22 02:10 kylemcmearty