我在安装我上传到Binstar频道的软件包时遇到了一些困难:https://binstar.org/Judowill/PyVCF
我使用conda skeleton命令从PyPi生成一个构建配方。经过一些修补后,所有的构建和上传如预期。
当我使用建议的命令时:
conda install -c https://conda.binstar.org/judowill pyvcf
我得到一个Error: No packages found matching: pyvcf错误。
我是不是遗漏了什么?上传和可用性之间是否有很长的延迟时间?
使用--debug标志,我得到以下输出:
conda --debug install -c https://conda.binstar.org/judowill pyvcf
DEBUG:conda.fetch:channel_urls=('https://conda.binstar.org/judowill/linux-64/', 'http://repo.continuum.io/pkgs/free/linux-64/', 'http://repo.continuum.io/pkgs/pro/linux-64/')
Fetching package metadata: INFO:stdoutlog:Fetching package metadata:
.DEBUG:dotupdate:fetching repodata: http://repo.continuum.io/pkgs/pro/linux-64/ ...
INFO:requests.packages.urllib3.connectionpool:Starting new HTTP connection (1): repo.continuum.io
DEBUG:requests.packages.urllib3.connectionpool:"GET /pkgs/pro/linux-64/repodata.json.bz2 HTTP/1.1" 200 16299
.DEBUG:dotupdate:fetching repodata: http://repo.continuum.io/pkgs/free/linux-64/ ...
DEBUG:requests.packages.urllib3.connectionpool:"GET /pkgs/free/linux-64/repodata.json.bz2 HTTP/1.1" 200 86460
.DEBUG:dotupdate:fetching repodata: https://conda.binstar.org/judowill/linux-64/ ...
INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): conda.binstar.org
DEBUG:requests.packages.urllib3.connectionpool:"GET /judowill/linux-64/repodata.json.bz2 HTTP/1.1" 200 408
INFO:stdoutlog:
DEBUG:conda.plan:H0 specs=['pyvcf', 'conda']
Error: No packages found matching: pyvcf发布于 2014-07-22 14:23:20
经过大量的闲聊后,它似乎有一个奇怪的错误。如果您创建了一个具有CamelCase名称的包(例如PyVCF),那么就会出现问题。conda将检查pyvcf的通道(即使您指定了PyVCF),它也找不到它。
我在提交一份窃听器报告。但要迅速解决这个问题,只需删除包从binstar和重新上传与所有小写。
https://stackoverflow.com/questions/24889155
复制相似问题