I have a csv file which is located on my computer, the path looks like: Macintosh HD/somefolder/anotherfolder/onemorefolder/file.csv
However when I try to import that csv as a dataframe in pandas using the code:
df = pd.read_csv("/Macintosh HD/somefolder/anotherfolder/onemorefolder/file.csv", sep =";")
PyCharm returns an error claiming there is no such directory or file. OKay, I insert a direct link where the same csv is located online, in this case the code looks like:
df = pd.read_csv("https://disk.yandex.ru/d/yaPJSq26gFvxHw", sep =";")
and now PyCharm says:
urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)>
What's wrong in my code and why don't I manage to import that csv directly from my mac?