I have mounted my google drive on to Colab and yet am unable to access a .csv file using Python. I've imported pandas here:
import pandas as pd
data = pd.read_csv('/content/drive/MyDrive/Colab Notebooks/Capstone 3/country_vaccinations.csv')
print(data)
Also, if I try to open the file by double-clicking it directly, it says
"Error Could not fetch country_vaccinations.csv from backend"
Please let me know if you have any thoughts on this or could point me to a solution. Thanks!