-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ensure jupyter dir is on PATH #62
Conversation
before dispatching to subcommands This addresses the case when jupyter is executed by absolute path and its dir is not on PATH, which would result in all subcommands not being found.
Weird that I JUST hit this today when I tried to create an init.d entry for notebook. Thankfully, the workaround works. :) |
…puts quotes around Python path, and jupyter-notebook is a .exe file
Which dir? root@5094eba8037a:/# jupyter --paths |
The directory where the Jupyter command itself is. See |
I am on a server (without sudo access) and facing this issue. But |
Where is the |
I doubt there exists any. |
If that doesn't exist, then |
This still failing for me in Windows 8: when I run
|
before dispatching to subcommands
This addresses the case when jupyter is executed by absolute path and its dir is not on PATH, which would result in all subcommands not being found.
closes jupyter/notebook#448