I'm trying to install Flask using pip. I've been following this tutorial, which instructs me to compile Python 3. pip install Flask gives an error that the SSL module is not available, then fails to install Flask.
While compiling, I had to sudo apt-get install zlib1g-dev to compile zlib. Do I have to install something to compile the SSL module too?
$ pip install flask
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting flask
Could not fetch URL https://pypi.python.org/simple/flask/: There was a problem confirming the ssl certificate: Can't connect to HTTPS URL because the SSL module is not availabe. - skipping
Could not find a version that satisfies the requirement flask (from versions: )
No matching distribution found for flask
$