Reputation: 45
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