xlrd problema de importación con Python 2.7

Tengo una tarea para leer datos de Excel en Python. Tengo instalado Python 2.7. Intenté instalar xlrd0.8.0 con los siguientes comandos en Windows.

C:\Python27\xlrd-0.8.0>python setup.py build
running build
running build_py
creating build
creating build\lib
creating build\lib\xlrd
copying xlrd\biffh.py -> build\lib\xlrd
....


C:\Python27\xlrd-0.8.0>python setup.py install
running install
running build
running build_py
running build_scripts
running install_lib
running install_scripts
running install_egg_info
Writing C:\Python27\Lib\site-packages\xlrd-0.8.0-py2.7.egg-info

No recibo ningún mensaje de error durante la instalación. También veo la carpeta xlrd-0.8.0 en los paquetes de sitio en la carpeta / lib ...

Pero cuando intento importarlo, Python no puede reconocerlo ...

>>> import xlrd
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
import xlrd
ImportError: No module named xlrd

¿Puede sugerir cómo encontrar el problema?

Respuestas a la pregunta(6)

Su respuesta a la pregunta