Reputation: 93
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 !
Upvotes: 1
Views: 710
Reputation: 412
It worked for me :
jupyter notebook --notebook-dir=/home/$USER/notebooks --no-browser
Upvotes: 1
Reputation: 21
I presume you are trying to run Jupyter Notebook and with that goal in mind, I suggest you follow the following steps:
I presume this method is defined by Azure for security reasons, to prevent people from having an open port without authentication. Hope this helps!
Upvotes: 2