首页 > 解决方案 > 未找到 conda 的 R 包

问题描述

我一直在尝试在我的 conda 环境中安装 R 包“miceadds”。

我跑了conda install r-miceadds 但它一直告诉我

Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.

PackagesNotFoundError: The following packages are not available from current channels:

  - r-miceadds_3.11-6

Current channels:

  - https://repo.anaconda.com/pkgs/main/osx-64
  - https://repo.anaconda.com/pkgs/main/noarch
  - https://repo.anaconda.com/pkgs/r/osx-64
  - https://repo.anaconda.com/pkgs/r/noarch

To search for alternate channels that may provide the conda package you're
looking for, navigate to

    https://anaconda.org

and use the search bar at the top of the page.

但是,我确实在https://anaconda.org上找到了这个包。我不确定发生了什么.. 有没有办法在本地安装“r-miceadds”并在我的 conda 环境中使用它?

任何帮助表示赞赏,非常感谢!

标签: pythonranacondacondar-mice

解决方案


现在可以通过 Conda Forge 获得。尝试

conda install -c conda-forge r-miceadds

推荐阅读