チャットボットのインストールに問題があります

チャットボットのインストールに問題があります

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 バージョンを使用してください。

関連情報