Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Abort trap: 6 when using pip3 search¶
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.
Find the location of the Python package cryptography.
:::bash pip3 show cryptographRemove the whole package directory.
:::bash sudo rm -rf /path/to/cryptographReinstall the latest version of
cryptograph.:::bash pip3 install cryptograph