I've installed pymssql using
pip install pymssql
I verified that it was successfully installed in /usr/local/lib/python3.6/site-packages by running the following commands and each one succeeded.
python3 -i
import pymssql
conn = pymssql.connect(server='mysqlserver', user='myuser', password='mypasswrd', database='mydb')
However when I launch Spyder and type in "import pymssql" in the IPython console, I receive the following error that the module is not found.
ModuleNotFoundError: No module named 'pymssql'
I verified that Spyder is running the Python 3.6 instance installed on my Mac. Any ideas on why my Spyder interpreter is not finding this module? Thank you in advance.