I have local google drive and some files in them.
I'm also using vscode to work on some ipynb files and spread sheets.
I'm currently trying to load the spread sheet with this code:
file_path = 'g:/My Drive/some_spread_sheet.xls'sheet_name = 'some_name'excel_data = pd.read_excel(file_path, sheet_name=sheet_name)I can see the file in my local google drive but I can't open it using vscode.
How can I solve this?
Thanks