问题
I've set up a vm with Deep Learning Virtual Machine (Microsoft Azure).
Normally, I connect to the vm thanks to ssh etc
Then I run jupyter by writing jupyter notebook --no-browser
.
But this time I have can't run jupyter notebook because there is this message Bad config encountered during initialization: "No such notebook dir: ''/dsvm/Notebooks''"
How can I fix that ?
Thanks for your help !
回答1:
I presume you are trying to run Jupyter Notebook and with that goal in mind, I suggest you follow the following steps:
- Move your notebook to ~/notebooks/
- Find your Pubic IP Address of your VM from Azure Dashboard
- Access https://your_public_ip_address:8000 in your web browser and log in using your vm login credentials
- You should be able to see all the files you have in ~/notebooks/
I presume this method is defined by Azure for security reasons, to prevent people from having an open port without authentication. Hope this helps!
回答2:
It worked for me :
jupyter notebook --notebook-dir=/home/$USER/notebooks --no-browser
来源:https://stackoverflow.com/questions/49700824/deep-learning-virtual-machine-cant-run-jupyter-no-such-notebook-dir-dsvm-n