我在Windows 7上使用Jupyter Notebook,我想将默认的foler设置为 D:。 目前,我在jupyter_notebook_config.py中有以下行:
c.NotebookApp.notebook_dir = 'D:/'
当我打开Jupyter Notebook时,在浏览器中收到以下消息:
404 : Not Found You are requesting a page that does not exist!
在提示符中,我得到以下输出:
[W 14:12:45.477 NotebookApp] ipywidgets package not installed. Widgets are unavailable.
[I 14:12:45.497 NotebookApp] Serving notebooks from local directory: D:/
[I 14:12:45.497 NotebookApp] 0 active kernels
[I 14:12:45.497 NotebookApp] The IPython Notebook is running at: http://localhost:8888/
[I 14:12:45.497 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[I 14:12:45.747 NotebookApp] Refusing to serve hidden directory, via 404 Error
[W 14:12:45.790 NotebookApp] 404 GET /tree (::1) 44.00ms referer=None
但是,如果我将配置文件更改为指向文件夹,则eveything可以正常工作。例如,配置中的以下行有效:
c.NotebookApp.notebook_dir = 'D:/Dropbox'
有什么办法可以将Jupyter默认文件夹设置为根驱动器吗?
答案 0 :(得分:2)
Refusing to serve hidden directory, via 404 Error
指向驱动器上没有写入权限。
如果您更改了D:\的安全权限,则可以将其用作Jupyter Notebook的默认文件夹。您必须从Windows控制面板关闭UAC(用户帐户控制设置)(为了安全起见,它会阻止程序写入根目录,必须以管理员身份登录才能将其关闭)。您必须以管理员身份运行该程序。这里的指南可能是最好的方法:https://superuser.com/a/753068
请记住,UAC可以防止未经授权的应用程序写入您的根目录,因此可能不是关闭的最佳选择。如果您只是为了方便而执行D:\,您也可以将目录映射为另一个驱动器号。
总而言之,您的错误消息是由于选择了Windows试图保护您免受病毒侵害的目录,并且被应用程序锁定,除非您关闭这些保护措施。