I have a previously created jupyter notebook that I'd like to run on the Google Cloud Platform.
I currently have a notebook instance running on a GCP VM and it works fine. I was also able to create a storage bucket and upload all dataset and notebook files to the bucket. However, these files don't show up in the Jupyter Notebook directory tree. I know I can access the dataset files using something like...
client = storage.Client()
bucket = client.getbucket('name-of-bucket')
blob = storage.Blob( 'diretory/to/files', bucket )
fid = BytesIO(blob.downloadas_string())
But I'm not sure how to actually serve up a notebook file to use, and I really don't feel like copying and pasting all my previous work.
All help appreciated!