채터봇 설치 문제

채터봇 설치 문제

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 버전을 사용하세요.

관련 정보