Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

When running Jupyter locally, your data files typically sit on your local filesystem and can be read using the Python Standard Library; e.g.

with open('myfile.txt', 'r') as f:
  print(f.read())

In a cloud environment, your data files are now located in a cloud storage system (such as Amazon S3 or

  • No labels