侯程恩
侯程恩

Reputation: 23

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

Upvotes: 1

Views: 908

Answers (1)

Talha Tayyab
Talha Tayyab

Reputation: 27930

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

Upvotes: 1

Related Questions