Attualmente sto usando Python 2.7 e sto provando ad aprire un foglio Excel. Quando si utilizza il codice seguente:
import os
from win32com.client import Dispatch
xlApp = win32com.client.Dispatch("Excel.Application")
xlApp.Visible = True
# Open the file we want in Excel
workbook = xlApp.Workbooks.Open('example.xls')
Ottengo questo errore:
ImportError: nessun modulo denominato win32com.client
C'è qualche possibilità di ottenere l'errore poiché sto utilizzando una macchina Windows a 64 bit?