jupyter lab的目录调整及设置默认浏览器为chrome的方法
1.Jupyter默认目录调整
首先要找到jupyter生成的配置文件jupyter_notebook_config.py。如果没有,在anacondaprompt中用如下命令生成一个:
jupyternotebook--generate-config
打开文件jupyter_notebook_config.py,在文件中找到
##Thedirectorytousefornotebooksandkernels.
#c.NotebookApp.notebook_dir=''
将默认目录改为D:/Python_prj/myproject:
##Thedirectorytousefornotebooksandkernels.
#c.NotebookApp.notebook_dir=''
c.NotebookApp.notebook_dir='D:/Python_prj/myproject'
2.Jupyter默认浏览器调整
在文件jupyter_notebook_config.py中,找到
##Specifywhatcommandtousetoinvokeawebbrowserwhenopeningthenotebook.
# Ifnotspecified,thedefaultbrowserwillbedeterminedbythe`webbrowser`
# standardlibrarymodule,whichallowssettingoftheBROWSERenvironment
# variabletooverrideit.
#c.NotebookApp.browser=''
添加如下代码,将浏览器设为chrome:
importwebbrowser
webbrowser.register('chrome',None,webbrowser.GenericBrowser(u'C:/ProgramFiles(x86)/Google/Chrome/Application/chrome.exe'))
c.NotebookApp.browser='chrome'
补充知识:修改anaconda中jupyternotebook的默认浏览器详细说明
1、打开anacondaprompt
2、输入jupyternotebook--generate-config
3、显示出jupyter_notebook_config.py文件所在目录。找到这个文件,用记事本打开。
4、在#c.NotebookApp.browser=''''后加入下面语句块:
importwebbrowser
webbrowser.register("chrome",None,webbrowser.GenericBrowser(u"C:\\ProgramFiles(x86)\\Google\\Chrome\\Application\\chrome.exe"))
c.NotebookApp.browser='chrome'
5、上条中红色字体应替换为本机中chrome实际安装地,查看方法为开始菜单-chrome-右键点击属性,快捷方式页签有目标,是完整路径,粘在上面即可。注意表示目录的“\”要改变为双“\”
以上这篇jupyterlab的目录调整及设置默认浏览器为chrome的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。