假设我有一个使用 pandas、numpy 和 matplotlib 的 python 包。如果我查看他们的 meta.yaml 文件,我会在需求部分看到很多依赖项。例如像make这样的编译器。我是否还需要在我自己的 meta.yaml 包中命名来自 build 和 host 部分的所有这些依赖项,或者如果我只写以下内容就足够了:
Requirements:
Host:
- python 3.8
Build:
- python 3.8
Run:
- pandas
- numpy
- matplotlib