问题描述
我在Win 7上安装了Anaconda PYTHON 2.7 64bit,然后使用
I installed anaconda PYTHON 2.7 64bit on Win 7 and then updated using
conda update conda
以后安装了
conda install jupyter
当我尝试使用Windows在同一驱动器上运行时
When I tried to run from the same drive on windows using
jupyter notebook
它在Firefox上启动并声明
it launches on Firefox and states
404: Not Found
在命令中说
Refusing to serve hidden directory via 404 Error
要启动它需要做什么?
更新:anaconda安装程序具有运行jupyter的快捷方式,并且可以按这种方式工作-但为"jupyter notebook"提供了404:
Update:The anaconda install has a shortcut to run jupyter and it works that way - but gives 404 for "jupyter notebook":
d:\Anaconda\Scripts/ipython-script.py" notebook
推荐答案
我发现一个简单的原因可能是试图从驱动器的根目录运行Jupyter-从C:\运行失败. Cricboy007的建议是创建一个文件夹(没有特殊名称,我叫我的笔记本),并在使用cd来确定工作目录对我有用之后运行Jupyter.
I found a simple cause of this could be trying to run Jupyter from the root of a drive - running it from C:\ failed. Cricboy007's suggestion to create a folder (no particular name, I called mine notebook) and run Jupyter once you've used cd to make that the working directory worked for me.
这篇关于jupyter在Windows 7上给出404:找不到错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!