python-anticaptcha is in an unsupported or invalid wheel
See original GitHub issueWhile using pip3 - I get the following error with the latest version of python-anticaptcha 0.4.1 on Ubuntu 16.04
You are using pip version 8.1.1, however version 19.2.3 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
The command '/bin/sh -c /usr/bin/pip3 install python-anticaptcha==0.4.1' returned a non-zero code: 1
You can reproduce this with docker using Dockerfile:
FROM ubuntu:16.04
WORKDIR .
USER root
RUN apt-get update -y
RUN apt-get install -y python python3-pip
RUN /usr/bin/pip3 install python-anticaptcha==0.4.1
I know I am using an older version of pip, but I am not willing to upgrade at the moment
Issue Analytics
- State:
- Created 4 years ago
- Comments:10 (6 by maintainers)
Top Results From Across the Web
python-anticaptcha - Bountysource
I am able to solve the captcha und get a valid token. ... ```bash python-anticaptcha is in an unsupported or invalid wheel. You...
Read more >List of API Errors - Anti Captcha
Identifier Code Description
0 Code 0 is for "no errors".
10 ERROR_ZERO_BALANCE Account has zero or negative balance.
28 ERROR_PROXY_BANNED Proxy IP banned by target service....
Read more >python-anticaptcha - PyPI
Client library for solve captchas with Anticaptcha.com support. The library supports both Python 2.7 and Python 3. The library is cyclically and ...
Read more >Solving recaptcha with anticaptcha using Python
I am trying to fill recaptcha using anticaptcha api. But I am unable to figure out how to submit response. Here is what...
Read more >ERROR_INCORRECT_SESSIO...
Use pip install python-anticaptcha -U . This message reminds me of an error message that was fixed a few months ago. Since then...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Did you tried build again after pull?
Could you try
pip install python-anticaptcha --no-binary python-anticaptcha
to avoid wheel (no real benefits, because our library don’t have any binaries)?In my situation pip version was too old.
The above-mentioned Dockerfile also has a problem that it installs two versions of Python, which is not recommended for containers. Could somebody verify following Dockerfile?