9

是否可以将来自特定 binstar 频道的构建要求添加到 conda 配方中?

例如,我想为 ffmpeg-devel 创建一个配方,它需要 7zip。但似乎只有来自trent频道的 7za 有效。我试图把trent/7zatrent 7za但他们都没有工作。

package:
name: ffmpeg-dev
version: 2.3.3

source:
fn: ffmpeg-20140827-git-8c1b942-win64-dev.7z
url: http://ffmpeg.zeranoe.com/builds/win64/dev/ffmpeg-20140827-git-8c1b942-win64-dev.7z [win]
sha1: 1aaf45274229cba7fe723a4118ca243e77cb4587

requirements:
build:
    - trent/7za
    - ffmpeg-dev
run:
    - ffmpeg-dev

about:
home: https://www.ffmpeg.org/
license: "Various (see Copyright file from the aspell6-en source)"
summary: "A complete, cross-platform solution to record, convert and stream au
4

1 回答 1

8

这还不可能,但这是我们要添加的功能。现在,您需要在构建之前将通道添加到配置中,例如

conda config --add channels trent 
于 2014-09-02T20:58:50.580 回答