Not able to cat dbfs file in databricks community edition cluster. FileNotFoundError: [Errno 2] No such file or directory:

By default, this data is on the DBFS, and your code need to understand how to access it. Python doesn’t know about it – that’s why it’s failing. But there is a workaround – DBFS is mounted to the nodes at /dbfs, so you just need to append it to your file name: instead of … Read more