Juypter notebook currently has a limitation: Starting terminal in current directory
How do I do this from command-line (no Anaconda or other GUI), without the following unacceptable hacky approaches? (and in particular where the notebook directory might well change between invocations, or between users?)
Embed hard paths into your notebook code. Must be absolute paths. (yukky). Also user-dependent. Can't distribute notebooks which handle files properly with paths relative to their install dir. Or across machines.
jupyter notebook --notebook-dir .
Not adding --notebook-dir as described below by @rishi-jain does not work on my environment because somehow I have configured my environment in the past to start in a certain directory when launched from the Windows menu (and I kind of prefer that to stay). – Rhyolite