基于conda安装R包以及devtools

Anaconda安装

https://www.anaconda.com/download#downloads
官网下载地址下载安装包再用xftp传输到需要安装的机器上

也可以使用wget+下载地址直接下载
安装
bash 下载的.sh文件
一路回车直到出现
Do you accept the license terms? [yes|no]
[no] >>> 
输入yes确认
安装位置选择
Anaconda3 will now be installed into this location:
/home/export/base/yxsc/zhouj/anaconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/home/export/base/yxsc/zhouj/anaconda3] >>>

重新更改位置直接在>>>后面加上需要安装的位置

等待安装
安装完成后会显示
Installing base environment...


Downloading and Extracting Packages


Downloading and Extracting Packages

Preparing transaction: done
Executing transaction: | 

    Installed package of scikit-learn can be accelerated using scikit-learn-intelex.
    More details are available here: https://intel.github.io/scikit-learn-intelex

    For example:

        $ conda install scikit-learn-intelex
        $ python -m sklearnex my_application.py

    
                                                                                                                                                       ne
installation finished.
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
[no] >>> 

这里yes就帮你配置环境变量,如果你想要自己手动配置环境变量就选择no


安装完成
==> For changes to take effect, close and re-open your current shell. <==

If you'd prefer that conda's base environment not be activated on startup, 
   set the auto_activate_base parameter to false: 

conda config --set auto_activate_base false

Thank you for installing Anaconda3!

查看版本
conda --version

创建启动R语言环境

conda create -n r_env r-base=3.6.0
r_env名字自行修改

conda activate r_env
启动环境

安装devtools

conda install -c r r-devtools
这会将所有需要用到的包和头文件全部加载完毕

测试安装

R
进入R语言
library(devtools)
测试是否安装完成,没有输出则安装完成,目前暂未遇到安装失败问题

备注

如提示缺少什么包可以用
conda install r-ggplot2安装确实的包文件,包名以r-开头
GitHub 加速计划 / de / devtools
24.6 K
4.14 K
下载
vuejs/devtools: Vue.js 开发者工具,这是一个浏览器插件,可以安装在 Chrome 和 Firefox 等现代浏览器中,用于调试 Vue 应用程序,提供了组件树查看、状态快照、时间旅行等高级调试功能。
最近提交(Master分支:3 个月前 )
79116147 - 4 个月前
f0359002 - 5 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐