question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

python-anticaptcha is in an unsupported or invalid wheel

See original GitHub issue

While 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:closed
  • Created 4 years ago
  • Comments:10 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
ad-mcommented, Oct 5, 2019

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)?

0reactions
ad-mcommented, Oct 26, 2019

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?

FROM ubuntu:16.04
WORKDIR .
USER root
RUN apt-get update -y

RUN apt-get install -y python3 && \
    apt-get install -y curl && \
    curl -s -o /opt/get-pip.py https://bootstrap.pypa.io/get-pip.py && \
    python3 /opt/get-pip.py && \
    rm /opt/get-pip.py
RUN pip3 install python-anticaptcha==0.4.1
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found