Error While Installing Chatterbot. I Don't Know What Packages To Install To Solve The Error
I am using windows 10 64-bit I am using python 3.8 64 bit my system has microsoft visual c++ 2013 redistributable(x86 and x64) microsoft visual c++ 2015-2019 redistributable (x86
Solution 1:
chatterbot
requires spacy 2.1.9 which requires blis<0.3.0,>=0.2.1
. Checking on pypi
, only 0.2.4 seems to match these requirements. For this version, only the source package is available when using python 3.8. The whl files only go up to 3.7, which already creates a first option for you: installing python 3.7 instead
If you want to use python 3.8 and use chatterbot
, you will need to compile blis
from source. Looking at your error, it is trying to run clang
. The project description on pypi state that:
If you want to install from source and you’re on Windows, you’ll need to install LLVM
So you will need to install the LLVM compilersuite to get the source installation running.
Post a Comment for "Error While Installing Chatterbot. I Don't Know What Packages To Install To Solve The Error"