Conda:从github安装R包

时间:2019-07-16 10:00:00

标签: r pip yaml conda devtools

对于conda yml文件,可以使用pip as从github定义python依赖项

name: sample_env
channels:
dependencies:
   - python=2.7
   - pip:
     - git+https://github.com/my/repository

是否有一种使用

的方式对R包执行类似的操作(例如,使用devtools)
name: sample_env
channels:
dependencies:
   - R=3.6
   - devtools:
     - git+https://github.com/my/repository

1 个答案:

答案 0 :(得分:0)

在R中,您将为此使用'Remotes'。例如,您的描述文件将为:

Package: NamePackage: Name
Title: Something
Description: Describe
Version: 0.0.1
Authors@R: people
Depends: R (>= 3.6)
Remotes:
    githubuser/repo

在“ Remotes”中,将放置您要从github导入的任何内容。