安装聊天机器人时遇到问题

安装聊天机器人时遇到问题

我正在安装 Chatterbot 因为我将在一个项目中使用它但是当我尝试安装时出现错误:

pip install ./ChatterBot
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Processing ./ChatterBot
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-req-build-xd5wZH/setup.py", line 16, in <module>
        platform.python_version()
    Exception: You are tying to install ChatterBot on Python version 2.7.16.
    Please install ChatterBot in Python 3 instead.

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-req-build-xd5wZH/

我正在使用带有 raspbian 的 rasPi,这是我完成项目需要安装的最后一个 apt。

另外,我已经这样做了

pip install --upgrade setuptools

答案1

python3.10 -m pip install chatterbot==1.0.4

试试这个,它对我有用。使用您拥有的 Python 版本。

相关内容