I installed openpyxl with
$ pip install openpyxl when I try the command
from openpyxl import Workbook I get
Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> from openpyxl import Workbook ImportError: No module named 'openpyxl' I am using Python 3.4 and Ubuntu 14.04, 32-bit OS type
python2, usepip3 install openpyxl.pythonrefers to python 2.x. To use python 3 you need to usepython3andpip3as stated by @zetysz.