Replies: 5 comments
-
|
This is definitely an odd one - I can't say I've seen it before. You're correct that Briefcase internally invokes Does One thing to check - what version of pip are you running? If you've got a really old version of pip, that might be causing problems; upgrading ( |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for your answer. I can't install anything with pip without the --trusted-host argument. If I try pip |
Beta Was this translation helpful? Give feedback.
-
|
I resolved my problem with this workaround |
Beta Was this translation helpful? Give feedback.
-
|
To be very clear - The "trusted-host" option essentially means "ignore any SSL signatures on HTTPS". It means any connection to PyPI is susceptible to a MITM attack, because your connection will not be doing any validation that the data is coming from a trusted source. If If you want to try and diagnose, this StackOverflow post has a procedure you can follow. Unfortunately, the vast majority of the answers on that page suggest the same "--trusted-host" option you've used. |
Beta Was this translation helpful? Give feedback.
-
|
Are you behind a reverse proxy? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, my question must be very easy, it appears when trying to folow the tutorial here
https://docs.beeware.org/en/latest/tutorial/tutorial-1.html
but all that I tried didn't work. I'm surprised the question wasn't already asked
I'm on windows 10, I followed the tutorial until trying puip install briefcase
There, I had a lot of errors due to SSL
Could not fetch URL https://pypi.org/simple/briefcase/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443):
I didn't succeed installing someting in python to enable SSL correctly, so I went over with
pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org briefcase
It worked, and I moved forward, but the problem reapears when launching
briefcase dev
It seems that briefcase-dev silently launch pip install, so I'm stuck again
How can I install (easy way) something to content pipi with SSL?
Beta Was this translation helpful? Give feedback.
All reactions