jupyter 安装 R 语言环境
- 打开 Anaconda Prompt
- 运行 conda create -n r_env python==3.6.8(python3.7不能用)
- 运行 conda install jupyter
- 运行 conda install R
- 输入 R 回车,进入 R 语言环境
- options(repos="https://CRAN.R-project.org") (选择仓库源防止被墙而安装不上某些包) - install.packages(c('repr', 'IRdisplay', 'evaluate', 'crayon', 'pbdZMQ', 'devtools', 'uuid', 'digest')) - devtools::install_github('IRkernel/IRkernel') (如果显示Git找不到,将Git添加到环境变量并重启电脑以使环境变量生效) - IRkernel::installspec() - q() (退出 r 环境)
- 打开 jupyter,已经有 R 环境了。
如果 jupyter 还未支持多环境,可参考我的另一篇博客:
jupyter多环境支持与更改工作目录 - ccgcccccc的博客 - CSDN博客
参考
R(1):Anaconda下R语言的安装 - m0_37548423的博客 - CSDN博客
R与Jupyter(windows) - 炫炫有牛腩 的博客 - CSDN博客
how to reinstall R kernel on jupyter notebook - Stack Overflow
R - cannot access urls for package installation - Stack Overflow