I am trying to work on some excel files, I decided to use the openpyxl library. I copied the openpyxl folder to / lib / and tried to execute the import command on some sample code, and all I get is a list of several errors.
Traceback (most recent call last): File "C:/Users/Karolina/Documents/python/test xlsx.py", line 1, in <module> import openpyxl File "C:\Python34\lib\openpyxl\__init__.py", line 9, in <module> from openpyxl.workbook import Workbook File "C:\Python34\lib\openpyxl\workbook\__init__.py", line 5, in <module> from .workbook import * File "C:\Python34\lib\openpyxl\workbook\workbook.py", line 14, in <module> from openpyxl.utils.datetime import CALENDAR_WINDOWS_1900 File "C:\Python34\lib\openpyxl\utils\datetime.py", line 11, in <module> from jdcal import ( ImportError: cannot import name 'gcal2jd'
At first I got the same error about "jdcal", so I installed the jdcal library. Now I donβt know how to fix it, whatβs wrong with him? I am using python 3.4
source share