Back
I want to install django-mssql, but when I tried to import the library (using import sqlserver_ado.dbapi), I am getting the below error message:
ImportError: No module named pythoncom
I tried to look for that library, but not able to get the output.
This error you are getting because you have not installed that package in Python. It comes with ActivePython but you can get it independently on GitHub as part of pywin32.
You can also use the below code:
pip install pywin32Y
31k questions
32.8k answers
501 comments
693 users