“ssl module in Python is not available” when installing package with pip3

Step by step guide to install Python 3.6 and pip3 in Ubuntu Install the necessary packages for Python and ssl: $ sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev Download and unzip “Python-3.6.8.tar.xz” from https://www.python.org/ftp/python/ into your home directory. Open terminal in that directory and run: $ ./configure Build and install: $ make && sudo make install … Read more

NET::ERR_CERT_REVOKED in Chrome, when the certificate is not actually revoked

Not sure what it all means, but the answer is there: and Google revoked a Symantec certificate from Google products, but they have suspended the revocation following the type of issues you’re describing (which I also experienced). Quoting the Chromium ticket: First, the good news is the change has been temporarily reverted, and you should … Read more