python-3.x pip does not install chatterbot libary [关闭]

uqcuzwp8  于 12个月前  发布在  Python
关注(0)|答案(2)|浏览(152)

**已关闭。**此问题需要debugging details。目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
6小时前关闭
Improve this question
当我尝试安装聊天机器人我得到这个错误
错误链接:https://gist.github.com/SusgUY446/c2c2ae5a1c07aacb0191c35e34d0d0aa
他们不能删除最少的字符吗?要么太多,要么不够。
他们不能删除最少的字符吗?要么太多,要么不够。
他们不能删除最少的字符吗?要么太多,要么不够。

r7s23pms

r7s23pms1#

不幸的是,聊天机器人只支持到python 3.8

https://pypi.org/project/ChatterBot/


的数据

  • 您需要将python降级到3.8才能使用Chatterbot。*
pxq42qpu

pxq42qpu2#

诊断结果很清楚。
安装程序脚本需要运行clang C编译器,但您没有安装编译器并使其可用于该脚本。

running build_ext
        ...
        clang -c C:\Users\admin\AppData\Local\Temp\pip-install-rjabvilf\blis_4e316ba9fadc41da8c13b6e248bd31b9\blis\_src\config\bulldozer\bli_cntx_init_bulldozer.c -o ...
        error: [WinError 2] The system cannot find the file specified
        [end of output]

字符串
要么安装一个预构建的二进制包,要么安装构建工具的先决条件。chatterbot的作者似乎没有在二进制发行版上投入太多精力,因为它没有出现在conda-forge的原料中。

相关问题