-
Notifications
You must be signed in to change notification settings - Fork 5k
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
'notebook' is not a Jupyter command #448
Comments
@fehiepsi What do you get from |
Here is my result of
The result for
|
By the way, except the command |
I bumped into this issue during a PR to IJulia. The issue can be reproduced by the following julia code Pkg.clone("Conda")
Pkg.build("Conda")
using Conda
Conda.add("jupyter")
run(`$(joinpath(Conda.SCRIPTDIR,"jupyter")) notebook`) # errors
run(`$(joinpath(Conda.SCRIPTDIR,"jupyter")) kernelspec --version`) # do also error |
Some more info I can only reproduce it on Windows. But I have seen it on travis at this commit https://travis-ci.org/Luthaf/Conda.jl/builds/81279978 |
jupyter/notebook#448 is closed and released.
jupyter/notebook#448 is closed and released.
jupyter/notebook#448 is closed and released.
jupyter/notebook#448 is closed and released.
I ran into this issue using a private miniconda distribution in the |
Yup, that should be fixable pretty easily. I've got a working fix right now, I just need to make sure it doesn't do the wrong thing when |
@dhoegh I opened jupyter/jupyter_core#62 which should fix that case. It's possible the Windows issue is the same. |
@minrk I have update jupyter_core to version 4.0.6 but still get the same issue. The command with full path fails in terminal:
|
@fehiepsi that looks like it's the same PATH issue @dhoegh is seeing and is fixed by jupyter/jupyter_core#62. |
…yter is not in path as suggested in jupyter/notebook#448
…yter is not in path as suggested in jupyter/notebook#448
@minrk - are you okay with closing this? |
while the problem is why I think it is very personal feeling for me, that I am not a fan of Jupyter, from its early confusion, every time iPython pop up the message of saying the notebook is going to be dropped, and this tiny struggle. The project is very ambitious and progress very fast and sometimes aggressively which is the reason why I don't like it. not everybody appreciates to understand the glorious future vision of Jupyter and why not just keep iPython notebook unaffected? |
I'm equally puzzled why your You probably don't need to worry about the different jupyter- packages: installing the top level |
If you want to keep IPython notebook unaffected, you can pin IPython to the last version with the notebook:
I'm sorry the transition is not going well for you. It is extremely strange that the I would expect reinstalling the notebook to fix this:
But I'm not sure how the file went missing in the first place. |
I am also having some odd issues as of a recent Jupyter install using pip3 on OS X 10.11.
while the old setting |
@damienstanton the |
@takluyver Just to clarify, the uninstall/reinstall commands would be:
|
I was suggesting uninstalling and installing The The |
@takluyver Thanks. Quick question: if one does Then, |
I don't think pip uninstalls dependencies, so if you uninstall
|
I also had the issue on osx with homebrew python installation, where The following, as recommended above, resolved the issue: |
I got mine working by deleting the I believe the issue had something to do with a mismatched |
I had the same problem on a Mac OSX el capitan using python3.5 installed from python.org. Reinstalling did not work. |
I am having the same issue on a fresh install on Arch Linux. I installed jupyter 4.1.0 from the repositories and the 'notebook' subcommand is not recognized. |
@juliohm can you do |
@takluyver there is no jupyter-notebook in the same location. |
I don't know how Arch installation works, but using pip or conda, there are three packages involved:
Is it possible that you have only got the last of those installed instead of all three? |
@takluyver you were right, I needed to install another package |
@mgrani I have a similar setup, but I moved jupyter-notebook to the |
sometimes jupyter notebook won't run (e.g. jupyter/notebook#448). If it is the case ipython3 notebook will come handy
sometimes jupyter notebook won't run (e.g. jupyter/notebook#448). If it is the case ipython3 notebook will come handy
Can anyone help me debug this? I got the same error |
@coldray i'm guesting you have a mac? try moving the file Or if that doesn't fix the problem try adding something like: |
Had this issue on a Mac running Python 3 in a virtual env. Reinstalling notebook as recommended above resolved the issue. |
I keep getting this error
'notebook' is not a Jupyter command
when trying to make a launcher (in Linux Mint mate panel) for jupyter notebook. The command I put in the launcher is/home/fehiepsi/miniconda3/bin/jupyter notebook
. If I replacejupyter
byipython
, then things go well. So I guess that the commandjupyter notebook
is different toipython notebook
, isn't it?I install ipython notebook by using conda and just install jupyter today (of course, I have updated all packages). Could anyone please give me some suggestions?
Additional informaltion: I just run
jupyter notebook
well in the terminal, so the problem might lie on the launcher. But I get confused because in the launcher, the commandipython notebook
runs well.The text was updated successfully, but these errors were encountered: