Closed nick-youngblut closed 2 years ago
--recursive is finding that it needs to build numpy somehow. You should really never build numpy. It looks like nanomath is the one responsible:
Preparing transaction: ...working... done
Executing transaction: ...working... done
Applying patch: '/var/folders/94/cb44zrcj06n_vj5zgxvjpb0h0000gp/T/tmp4xyhtdw2conda_skeleton_nanomath-0.21.0.tar.gz/pypi-distutils.patch'
patching file core.py
Hunk #1 succeeded at 168 with fuzz 2 (offset 1 line).
Warning, the following versions were found for numpy
I don't understand why it's recursing into building numpy, and that's a bug, but unfortunately not a very high priority one. I advise you to ctrl-c it to prevent it from trying to build numpy, and take the recipes you have already obtained. If you need others, re-attempt the recursive build down below nanomath in the chain.
same error for me in numpy-1.14.3
@rodgomesc if you are trying to build numpy itself, you need a different recipe. You absolutely will not succeed with the skeleton generator for numpy. It is a much more complicated beast.
You should make a compiler paçkage that points to your android SDK, then use the recipe that we already have for numpy. Installing to android/$ARCH is kind of an antipattern with conda. Any single env should be self-consistent in the programs and libraries it has installed (with the exception of compiler packages that target foreign architectures.
More in the docs at https://conda.io/docs/user-guide/tasks/build-packages/compiler-tools.html
and example recipe at https://github.com/AnacondaRecipes/aggregate/tree/master/ctng-compilers-activation-feedstock/recipe
Hi there, thank you for your contribution!
This issue has been automatically marked as stale because it has not had recent activity. It will be closed automatically if no further activity occurs.
If you would like this issue to remain open please:
NOTE: If this issue was closed prematurely, please leave a comment.
Thanks!
I'm trying to create a conda package for
nanopack
. I'm runingconda skeleton pypi nanopack --recursive
and getting the following error:Is there anything that I can do about the
AttributeError: 'NoneType' object has no attribute 'help'
?