You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the keyword argument python_requires of setup() is set as ">=3.3", but I found it is not compatible with Python<3.6. My local Python version is 3.5, and I encounter the following error when executing “pip install twarc==2.12.0”
Collecting twarc==2.12.0
Downloading twarc-2.12.0-py3-none-any.whl (60 kB)
|████████████████████████████████| 60 kB 630 kB/s
Collecting tqdm>=4.62
Downloading tqdm-4.64.1-py2.py3-none-any.whl (78 kB)
|████████████████████████████████| 78 kB 2.1 MB/s
Collecting click<9,>=7
Downloading click-7.1.2-py2.py3-none-any.whl (82 kB)
|████████████████████████████████| 82 kB 1.0 MB/s
Collecting python-dateutil>=2.8
Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)
|████████████████████████████████| 247 kB 4.4 MB/s
ERROR: Could not find a version that satisfies the requirement humanize>=3.9 (from twarc)
ERROR: No matching distribution found for humanize>=3.9
Dependencies of this distribution are listed as follows:
Currently, the keyword argument python_requires of setup() is set as ">=3.3", but I found it is not compatible with Python<3.6. My local Python version is 3.5, and I encounter the following error when executing “pip install twarc==2.12.0”
Dependencies of this distribution are listed as follows:
I found that humanize>=3.9 requires Python>=3.6, which results in installation failure of twarc in Python3.5.
Way to fix:
modify setup() in setup.py, amend python_requires keyword argument
Thanks for your attention.
Best regrads,
PyVCEchecker
The text was updated successfully, but these errors were encountered: