I am relatively new to python and very new to django.
I am attempting to connect to a MSSQL server with django. I installed django-mssql (maybe it needs to be put somewhere in the directory of the project?).
However, when using the following in my settings.py, I get the error: 'sqlserver_ado' isn't an available database backend.
'default':{
        'ENGINE': 'sqlserver_ado',
        'NAME': 'db_name',
        'USER': 'usr',
        'PASSWORD': 'pwd',
        'HOST': 'host.cloudapp.azure.com',
    }
I have searched extensively to attempt to solve this problem, but other solutions seem to be hidden or possibly out of date (here). I am using a Mac. Any help & or direction would be much appreciated!
 
     
    