Reputation: 23
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
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/
Upvotes: 1