我刚刚开始使用Mac,所以如果这听起来太天真,请原谅我。
我正在尝试安装Interactive Parallel
。来自https://github.com/ipython/ipyparallel,它说我需要找到jupyter_notebook_config.py
。
我已经使用Anaconda
安装了python和相关软件包,我可以使用ipython笔记本。但是,当我使用spotlight
搜索jupyter_notebook_config.py
时,我无法找到此文件:
那么,我在哪里可以找到这个文件?
更新:这是我的home
文件夹:
只有anaconda
。
答案 0 :(得分:19)
在主目录中查找.jupyter
文件夹。
它应该包含根据docs:
也可以使用Jupyter配置文件配置笔记本电脑Web服务器 和配置文件。 Notebook Web服务器配置选项 在Jupyter中的一个名为jupyter_notebook_config.py的文件中设置 目录,它本身通常是你家主目录中的.jupyter。
如果.jupyter
文件夹中不包含jupyter_notebook_config.py
文件,则需要使用jupyter notebook --generate-config
生成该文件。
答案 1 :(得分:8)
答案 2 :(得分:0)
正如cqcn1991所说,首先需要生成配置文件。
从我的主路径向下钻取之后,我找到了可执行文件以生成配置文件以及我如何生成它。
我还必须使用./引用jupyter可执行文件,因为我显然还没有在我的路径中添加它但是会添加它。
cd /Users/myMac/anaconda2/bin
./jupyter notebook --generate-config
Writing default config to: /Users/myMac/.jupyter/jupyter_notebook_config.py
然后我确实在我的主目录中找到了配置文件。
答案 3 :(得分:0)
您是否应该为此卸载Anaconda:
library(tidyverse)
map_data("world") %>%
distinct(region) -> regions
set.seed(1)
regions %>%
mutate(value = sample(-3:3,rep(nrow(regions)),replace=TRUE),
value = factor(value)) %>%
full_join(map_data("world"),by="region") -> world
ggplot(world) +
geom_polygon(aes(x=long,y=lat,group=group,fill=value)) +
guides(fill=guide_legend(ncol=3)) +
coord_quickmap() +
theme_void()+
scale_fill_brewer(palette = "RdBu")+
theme(legend.position = "bottom")
这可以解决我在Mac上的问题; 有关更多信息,请访问:https://docs.anaconda.com/anaconda/install/uninstall/