一直想找一个IDE编辑器编辑R语言和Python的代码,在网上找到了jupyter notebook,感觉挺好用的。但是安装时存在诸多问题,本片帖子旨在为大家安装时提供参考。
R语言安装python安装(安装时一定要把路径项选择上),网上教程诸多,不再赘述。
方法一 推荐直接使用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