我想在conda环境中从GDC门户下载一组图像文件。
我想做这样的事情:
conda install -c bioconda gdc-client
gdc-client download -m /home/melissachua/CODEX/gdc_manifest_20211027_035232错误消息:
> 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发布于 2021-10-27 08:08:47
这样的错误是由于与您的环境中已存在的包冲突而导致的。一个简单的修复方法是创建一个环境,用于在其中安装gdc。为此,您还需要conda-forge通道:
conda create -n gdc -c bioconda -c conda-forge gdc-client
conda activate gdc
gdc-client download -m /home/melissachua/CODEX/gdc_manifest_20211027_035232https://stackoverflow.com/questions/69734128
复制相似问题