Working with notebooksΒΆ
To begin working with Jupyter Notebooks, see the Official Jupyter Notebook documentation.
To share a Jupyter notebook on Cloud:
Save a
notebook
.Download and check out the handy
JupyterLab and Jupyter Notebook cheat sheet
to create and save a notebook.To upload your notebook to Cloud, open Anaconda Prompt or Terminal and enter:
anaconda upload my-notebook.ipynb
NOTE: Replace
my-notebook
with the actual name of your notebook.You can see an HTML version of your notebook stored at:
http://notebooks.anaconda.org/<USERNAME>/my-notebook
NOTE: Replace
<USERNAME>
with your username, andmy-notebook
with the actual name of your notebook.Anyone who has access to Cloud can download your notebook. To download the notebook, open Anaconda Prompt or Terminal and enter:
anaconda download username/my-notebook
NOTE: Replace
username
with your username, andmy-notebook
with the actual name of your notebook.