Post History
Sometimes Python packages fail to use your system's CA certificates (what your browser uses). For HTTPie, this is actually tracked in https://github.com/httpie/cli/issues/1581 One solution is to p...
Answer
#1: Initial revision
Sometimes Python packages fail to use your system's CA certificates (what your browser uses). For HTTPie, this is actually tracked in https://github.com/httpie/cli/issues/1581 One solution is to `pip install pip-system-certs` which will make Python use your system certificates instead. After this, `https wikipedia.org` should work normally.