grizzli11
grizzli11

Reputation: 45

"TypeError: Value must be a sequence" when trying to access file with openpyxl.load_workbook

I am accessing an excel file on a server in the network with the code

import openpyxl
path = r"S:\dic1\dic2\dic3\file.xlsx"
wb = openpyxl.load_workbook(path)

This is working perfectly fine on my pc but on another pc with exactly the same version of python installed it gives me the following error:

raise TypeError("Value must be a sequence")
TypeError: Value must be a sequence

How is this even possible? Any help would be greatly appreciated!

Upvotes: 3

Views: 4251

Answers (1)

Mohsin Ali
Mohsin Ali

Reputation: 124

Please Check openpyxl version.

Upvotes: 8

Related Questions