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

111 Views Asked by At

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

1

There are 1 best solutions below

0
Talha Tayyab On BEST ANSWER

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