我从 github 下载了一个 conda 包进行了一些修改,并想在 conda 环境中构建这个本地包并测试我的更改。问题是配方的构建失败了,因为 conda 有一个conda.exceptions.ResolvePackageNotFound错误,指出它没有检测到 2 个包,snakemake而fuzzywuzzy.
这是 meta.yaml 文件:
package:
name: snakepipes
version: 1.2.1
source:
path: ../
build:
number: 0
noarch: python
requirements:
build:
- python >=3
run:
- python >=3
- pandas
- graphviz
- pyyaml >=5.1
- wget
- snakemake >=5.2.3
- fuzzywuzzy
test:
commands:
- DNA-mapping --help
about:
home: 'https://snakepipes.readthedocs.org'
license: GPL3
summary: NGS processing pipelines from the MPI-IE
license_file: LICENSE.txt
Run Code Online (Sandbox Code Playgroud)
我试图将其更改noarch为“通用”,在requirements: build …