pythonpython-3.xpipcentos8

When I install python library "curl_cffi" on centos8, how can I fix it?


enter image description here

python version:Python 3.6.8

I try to use command

pip3 install curl_cffi

and

pip install curl_cffi

,but the same error occurred I tried to search, but couldn't find the answer What should I do to successfully install this curl_cffi please help me


Solution

  • Problem is your python version:

    curl_cffi requires at least python 3.7 or above and your python is 3.6.8

    Please install a newer version of python >=3.7

    https://pypi.org/project/curl-cffi/

    enter image description here