首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >无法在conda环境中安装gdc-client

无法在conda环境中安装gdc-client
EN

Stack Overflow用户
提问于 2021-10-27 07:01:25
回答 1查看 62关注 0票数 0

我想在conda环境中从GDC门户下载一组图像文件。

我想做这样的事情:

代码语言:javascript
复制
conda install -c bioconda gdc-client
gdc-client download -m  /home/melissachua/CODEX/gdc_manifest_20211027_035232

错误消息:

代码语言:javascript
复制
> Collecting package metadata (current_repodata.json): done Solving
> environment: failed with initial frozen solve. Retrying with flexible
> solve. Solving environment: failed with repodata from
> current_repodata.json, will retry with next repodata source.
> Collecting package metadata (repodata.json): done Solving environment:
> failed with initial frozen solve. Retrying with flexible solve.
> Solving environment: | Found conflicts! Looking for incompatible
> packages. This can take several minutes.  Press CTRL-C to abort.
> failed
> 
> UnsatisfiableError: The following specifications were found to be
> incompatible with each other:
> 
> Output in format: Requested package -> Available versionsThe following
> specifications were found to be incompatible with your system:
> 
>   - feature:/linux-64::__glibc==2.31=0
>   - feature:|@/linux-64::__glibc==2.31=0
> 
> Your installed version is: 2.31
EN

回答 1

Stack Overflow用户

发布于 2021-10-27 08:08:47

这样的错误是由于与您的环境中已存在的包冲突而导致的。一个简单的修复方法是创建一个环境,用于在其中安装gdc。为此,您还需要conda-forge通道:

代码语言:javascript
复制
conda create -n gdc -c bioconda -c conda-forge gdc-client
conda activate gdc
gdc-client download -m  /home/melissachua/CODEX/gdc_manifest_20211027_035232
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/69734128

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档