No module named 'openpyxl' - Python 3.4 - Ubuntu

前端 未结 7 981
心在旅途
心在旅途 2020-12-16 08:57

I installed openpyxl with

$ pip install openpyxl

when I try the command

from openpyxl import Workbook
<         


        
7条回答
  •  不知归路
    2020-12-16 09:50

    You have to install it explixitly using the python package manager as

    1. pip install openpyxl for Python 2
    2. pip3 install openpyxl for Python 3

提交回复
热议问题