I am a newbie (just 1 week) to this Python world. I tried installing django-mssql, but when I tried to import the library (using import sqlserver_ado.dbapi), I got this error message:

ImportError: No module named pythoncom

I tried to look for that library without success.

Can you guys point me in the right direction?

link|improve this question
2  
What is the full traceback? – khachik Nov 10 '10 at 13:48
feedback

3 Answers

up vote 5 down vote accepted

You are missing the pythoncom package. It comes with ActivePython but you can get it separately on SourceForge as part of pywin32.

link|improve this answer
Let me try the ActivePython installation and will keep you posted, thnx – Quaspam Nov 10 '10 at 14:39
Installing ActivePython solved the hassle of installing other packages, it came with pretty much everything. Thnx once again – Quaspam Nov 12 '10 at 7:01
feedback

You should be using pip to install packages, since it gives you uninstall capabilities.

Also, look into virtualenv. It works well with pip and gives you a sandbox so you can explore new stuff without accidentally hosing your system-wide install.

link|improve this answer
Will surely try that,thanks Hank – Quaspam Nov 10 '10 at 14:38
feedback

If you're on windows you probably want the pywin32 library, which includes pythoncom and a whole lot of other stuff that is pretty standard.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.