-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PyPI package does not install #41
Comments
Have you tried using the downloaded gz file: https://files.pythonhosted.org/packages/1a/1f/7e3d26093c0078486a9daffc06aba01ebd8fd67058ede1d6c993d6ee77b7/pyabpoa-1.4.0.tar.gz |
I was facing the same issue, and I tried downloading the .tar.gz file and installing, as you recommended. It still gives the same error, exactly as the one @cjw85 gets. |
This might be due to the cached file, you can try to add |
Thanks for the help @yangao07 . However, that doesn't work either. |
OK, how about specifying a version number, like: |
I got the same error, and I tried < pip install pyabpoa==1.2.5 >, but still got the same egg-info error. |
@yangao07 how did you build the source distribution, it appears simply to be invalid. |
The uploaded file was built with command |
I cannot reproduce this error.
|
The error can be reproduced using a minimal python docker image:
|
Thanks @cjw85 , I can reproduce it now. Also I see this error when I use my system python: Usually I use conda python/pip and it always works well. I will try to figure out how to fix this error when using the system python. |
This error might be related to the python package building process. Although I have no clue to fix it right now. Here is my new finding: |
Per this, the error can indicate that the build step is failing but not reporting a non-zero error code. Running with The workaround is to first run FYI, to my knowledge the 'proper' way to make this work is to write a pyproject.toml file that includes lines like the following (but with the correct version numbers):
This informs pip what it needs to have ready for installing your project. |
I believe this is fixed now. The install now works for me, and I see commits where the installation files were amended to make cython a build dependency. |
Under Python 3.8, Linux x86 the source package is fetched (there's only a Python 3.7 wheel) but fails to install.
The text was updated successfully, but these errors were encountered: