无法通过conda构建R包

时间:2018-12-04 21:49:59

标签: r dependencies jupyter conda

我正在尝试使用conda和Jupypter编写一些R代码。我发现了一个有用的软件包'treatSens',并尝试按照here的说明通过conda安装。

conda install conda-build
conda skeleton cran treatSens
conda build r-treatsens
conda install -c local r-treatsens

然后我收到此错误conda_build.exceptions.DependencyNeedsBuildingError: Unsatisfiable dependencies for platform osx-64: {"r-dbarts[version='>=0.9_1']"}。我如何满足这种依赖性?任何建议表示赞赏。

===更新====

添加了--recursive,然后出现新错误,发布了新问题 here

1 个答案:

答案 0 :(得分:2)

尝试以下操作:

conda install conda-build
conda skeleton cran --recursive treatSens
conda build r-treatsens
conda install -c local r-treatsens

递归选项应说明您需要的依赖项。