是否可以在conda配方中添加来自特定binstar通道的构建需求?
例如,我想为ffmpeg-devel创建一个食谱,它需要7zip。但似乎只有7za从trent频道工作。我试着把trent/7za和trent 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发布于 2014-09-02 20:58:50
这还不可能,但这是我们想要添加的特性。现在,您需要在构建之前将通道添加到您的配置中,如下
conda config --add channels trent https://stackoverflow.com/questions/25610843
复制相似问题