如何在jupyter notebook中使用R语言

如何在jupyter notebook中使用python和R语言

    • R和Python安装
    • jupyter notebook安装
    • 配置R以供jupyter notebook使用

一直想找一个IDE编辑器编辑R语言和Python的代码,在网上找到了jupyter notebook,感觉挺好用的。但是安装时存在诸多问题,本片帖子旨在为大家安装时提供参考。

R和Python安装

R语言安装python安装(安装时一定要把路径项选择上),网上教程诸多,不再赘述。

jupyter notebook安装

方法一 推荐直接使用anaconda,上面自带jupyter notebook而且环境配置已经设置好了
方法二 以管理者身份 打开命令提示符,转到python的安装路径,采用pip命令安装

//把pip更新到最新版本,此步非必须
  //Python 3.x
        pip3 install --upgrade pip 
  //Python 2.x
        pip install --upgrade pip 
//安装jupyter notebook
		pip install jupyter
//启动
		jupyter notebook

你可能感兴趣的:(R,python,jupyter,python,r语言)