Error On Building Python Conda Recipe
After I got help on how to refer to a github repository in my conda recipe for the osrm github repository I get an error message and script is stopping. My bld.bat file is: python
Solution 1:
The error is that you need to list all the dependencies of the package in the meta.yaml
file - apparently, you've missed one because of this error message:
RuntimeError: Setuptools downloading is disabled in conda build. Be sure to add all dependencies in the meta.yaml
Given the package it was looking for prior to the start of the traceback,
Processing dependencies for osrm==0.11.1
Searching for matplotlib
Traceback (most recent call last):
...
I suspect this particular error is because Matplotlib isn't in your dependencies, but there may be others as well.
Post a Comment for "Error On Building Python Conda Recipe"