ImportError: cannot import name 'ssl' from 'urllib3.util.ssl_' (/usr/local/lib/python3.7/site-packages/urllib3/util/ssl_.py)

I recently upgraded to macOS Catalina and now get the following error when running “streamlit run [FILE_NAME.py]” at the command line

Traceback (most recent call last):
File “/usr/local/bin/streamlit”, line 6, in
from streamlit.cli import main
File “/usr/local/lib/python3.7/site-packages/streamlit/cli.py”, line 35, in
import streamlit.bootstrap as bootstrap
File “/usr/local/lib/python3.7/site-packages/streamlit/bootstrap.py”, line 27, in
from streamlit.server.Server import Server
File “/usr/local/lib/python3.7/site-packages/streamlit/server/Server.py”, line 36, in
from streamlit.ReportSession import ReportSession
File “/usr/local/lib/python3.7/site-packages/streamlit/ReportSession.py”, line 41, in
from streamlit.storage.S3Storage import S3Storage as Storage
File “/usr/local/lib/python3.7/site-packages/streamlit/storage/S3Storage.py”, line 24, in
import boto3
File “/usr/local/lib/python3.7/site-packages/boto3/init.py”, line 16, in
from boto3.session import Session
File “/usr/local/lib/python3.7/site-packages/boto3/session.py”, line 17, in
import botocore.session
File “/usr/local/lib/python3.7/site-packages/botocore/session.py”, line 30, in
import botocore.credentials
File “/usr/local/lib/python3.7/site-packages/botocore/credentials.py”, line 34, in
from botocore.config import Config
File “/usr/local/lib/python3.7/site-packages/botocore/config.py”, line 16, in
from botocore.endpoint import DEFAULT_TIMEOUT, MAX_POOL_CONNECTIONS
File “/usr/local/lib/python3.7/site-packages/botocore/endpoint.py”, line 22, in
from botocore.awsrequest import create_request_object
File “/usr/local/lib/python3.7/site-packages/botocore/awsrequest.py”, line 26, in
import botocore.utils
File “/usr/local/lib/python3.7/site-packages/botocore/utils.py”, line 31, in
import botocore.httpsession
File “/usr/local/lib/python3.7/site-packages/botocore/httpsession.py”, line 8, in
from urllib3.util.ssl_ import (
ImportError: cannot import name ‘ssl’ from ‘urllib3.util.ssl_’ (/usr/local/lib/python3.7/site-packages/urllib3/util/ssl_.py)

Any thoughts on what I might have done wrong or need to update about my environment?