0

Summary


I've got the back end of a neat python program down, but I hate the gui options we have by default. Tkinter is unreliable, in my experience. And the turtle graphics thing would in no way benefit my project. So I looked into alternatives and Krivy came up. I followed the install step by step and I'm getting line after line of errors.

Windows 10

Python 3.6

Question


What is happening and how do I fix it? I've already looked at other questions and they are either from previous years or slightly different to my own problem. Below is the result of a pip install (or attempt).

Outcome


C:\Users\*>pip3.6 install pygyubu
Collecting pygyubu
  Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pygyubu/
  Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pygyubu/
  Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pygyubu/
  Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pygyubu/
  Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pygyubu/
  Could not fetch URL https://pypi.python.org/simple/pygyubu/:
  There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.python.org', port=443): Max retries exceeded with url: /simple/pygyubu/ (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)) - skipping
  Could not find a version that satisfies the requirement pygyubu (from versions: )
No matching distribution found for pygyubu

P.S this isn't the true attempt, this is my last attempt, where I gave up on krivy and just wanted to know if it was working. I have tried absolutely every variation of the command. Nothing yields results.

Paolo
  • 20,112
  • 21
  • 72
  • 113
John Smith
  • 97
  • 9

1 Answers1

0

Try pip install --egg pygubu and use "pip list --uptodate" and "pip list --outdated" command

Raj Josyula
  • 140
  • 1
  • 12