退出python 命令行,在终端输入jupyter notebook --generate-config,如下 [jupyteradmin@localhost ~]$ jupyter notebook --generate-config 此时会显示配置文件所在目录: /home/jupyteradmin/.jupyter/jupyter_notebook_config.py 3.3 修改配置文件 [jupyteradmin@localhost ~]$ vim /home/jupyteradmin/.jupyter/jupyter...
jupyternotebook--generate-config# 生成一个 .py 的文件 根据提示的路径找到该文件jupyter_notebook_config.py打开,建议直接ctrl+F搜索“notebook_dir”, 修改好路径保存。 正常的话应该改变了jupyter的默认位置了,但如果还没有的话,请看下面内容: 右击jupyter notebook图标 进一步,右击jupyter notebook图标,“属性...
这个一般是修改jupyter的配置文件,如果没有,就打开命令行,通过下面命令生成: 代码语言:javascript 复制 jupyter notebook--generate-config 此时会在C盘user下面的.jupyter目录下面产生一个jupyter_notebook_config.py的文件: 用Notepad++打开jupyter_notebook_config.py,找到c.Notebook,建立你的新工作路径,取消注释,c前...
pip install --user jupyter_nbextensions_configurator jupyter nbextensions_configurator enable--user 弹出后,勾选这个即可 6):Anaconda中修改jupyter notebook默认路径的简单方法 先将C:\ProgramData\Anaconda3\Scripts\ (我的装在这里了) 添加到系统环境变量里, 运行cmd, 输入jupyter-notebook F:\new folder 直接...
1.一般来说,安装Anaconda后已经自动安装了Jupyter notebook,在搜索框里进行搜索,并打开文件位置 2.双击运行Jupyter notebook 3.等待一段时间会自动弹出,就可以开始使用了 4.Jupyter notebook安装启动后,默认工作空间为当前用户目录,为了方便管理文档,建议自行设置工作空间。首先在磁盘中创建一个文件夹用以保存,并复制...
1:打开jupyter notebook 默认端口启动,直接在终端(anaconda prompe)输入命令如下: jupyter notebook 1. 在地址栏输入该网址,打开界面如下: 三、修改jupyter notebook文件存放位置: 在jupyter notebook的存放路径下找到配置文件进行修改: 1:查看jupyter存放路径: ...
docker anaconda3配置jupyter notebook anaconda中的jupyter如何配置,第一步:官网下载Anaconda镜像链接:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/我的电脑是Windows64bit所以选择这个版本等待下载第二步:安装Anaconda右键点击管理员身份打开点击Browser
4.1.1. 为需要在 jupyter-notebook 中使用的虚拟环境安装 ipykernel conda install -n Python_learn ipykernel # Python_learn为虚拟环境名 4.1.2. 激活虚拟环境,然后用如下命令生成 ipykernel 的配置文件 python -m ipykernel install --name python_learn3 # name之后的是在jupyternotebook中对应虚拟环境的...
1.首先打开anaconda的新建环境sklearn下的执行窗口 2.接着上文讲,我们在jupyter notebook中可以分块运行程序,我们输入命令行 3.import numpy as np 点击运行,出现报错如下,没有找到模块numpy 4.此时我们需要安装一下numpy模块,输入命令行conda install numpy回车 5.耐心等待,结果三个进度条... ...