本文介绍了如何为Anaconda构建非分发,无配方的现有软件包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
此问题是对尚未解决的问题的解释: anaconda找不到我已经安装的软件包
This question is rather a paraphrase of not yet attended question: anaconda could not find my already installed package
我想将doconce( https://github.com/hplgit/doconce )构建为如果该存储库没有可用的配方,则是anaconda的一部分.
I want to build doconce(https://github.com/hplgit/doconce) as a part of anaconda when no recipe for that repository is available.
有帮助吗?
推荐答案
对于PyPI上的软件包,最简单的方法是使用conda skeleton pypi
命令,例如
For packages on PyPI, the easiest way is to use the conda skeleton pypi
command, like
conda skeleton pypi doconce
这将从PyPI上的元数据创建doconce的配方,然后您可以使用它构建
This will create a recipe for doconce from the metadata on PyPI, which you can then build with
conda build doconce
这篇关于如何为Anaconda构建非分发,无配方的现有软件包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!