You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to create a pip release (python2.7) for a version of AMUSE including a new community code (vader) and the interface we've developed for it. I based my pip package in the "original" AMUSE pip package. When I try to install my package, I get the following error:
ERROR: Could not build wheels for amuse-galaxia, amuse-simplex, amuse-mmams, amuse-brutus, amuse-evtwin, amuse-ph4 which use PEP 517 and cannot be installed directly
I know this error comes from wheels, and found this and this about it, but I'm not sure where to go from here. Any help would be very appreciated, it's my first time creating pip packages.
The text was updated successfully, but these errors were encountered:
hmmm, what are your prerequisites for the pip package - it should only need amuse-framework (and then at least it will not complain about all these other code package) ..further:
are you trying to create a binary package? otherwise, we usually generate a source package:
python setup.py sdist
in one of the package directories (under packages/)...
Actually I had the same problem. To solve it I downloaded the tar.gz directory from the sites.
In the directory with makefile, tried to run 'make' from the shell: it reported an error about the absence of '-llapack' and '-lblas', which are ubuntu libraries.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 28 days if no further activity occurs. Thank you for your contributions.
stalebot
added
the
stale
Issues that have been around for a while without updates
label
Mar 4, 2022
I'm trying to create a pip release (python2.7) for a version of AMUSE including a new community code (vader) and the interface we've developed for it. I based my pip package in the "original" AMUSE pip package. When I try to install my package, I get the following error:
ERROR: Could not build wheels for amuse-galaxia, amuse-simplex, amuse-mmams, amuse-brutus, amuse-evtwin, amuse-ph4 which use PEP 517 and cannot be installed directly
I know this error comes from
wheels
, and found this and this about it, but I'm not sure where to go from here. Any help would be very appreciated, it's my first time creating pip packages.The text was updated successfully, but these errors were encountered: