Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

The issue is due to to pyopenssl using old dependencies. It can be fixed by removing the Python package cryptography package and then upgrading cryptography to version 2.8.

  1. Find the location of the Python package cryptography.

     :::bash
     pip3 show cryptograph
  2. Remove the whole package directory.

     :::bash
     sudo rm -rf /path/to/cryptograph
  3. Reinstall the latest version of cryptograph.

     :::bash
     pip3 install cryptograph

pypa/pip#7254