We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I get the error
fatal error: zlib.h: No such file or directory #include <zlib.h>
running this command:
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -DWITHNUMPY -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -IlibBigWig -I/opt/_internal/cpython-3.6.8/include/python3.6m -I/opt/_internal/cpython-3.6.8/lib/python3.6/site-packages/numpy/core/include -I/opt/_internal/cpython-3.6.8/include/python3.6m -c libBigWig/bwStats.c -o build/temp.linux-x86_64-3.6/libBigWig/bwStats.o
How do I need to update my include paths to successfully build my wheel?
The text was updated successfully, but these errors were encountered:
zlib is not part of the manylinux1 or manylinux2010 policies. As such, its development package is not installed. 2 options are available:
zlib-devel
yum
Sorry, something went wrong.
See also: pypa/auditwheel#152
Yum install worked. Thanks!
No branches or pull requests
I get the error
running this command:
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -DWITHNUMPY -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -IlibBigWig -I/opt/_internal/cpython-3.6.8/include/python3.6m -I/opt/_internal/cpython-3.6.8/lib/python3.6/site-packages/numpy/core/include -I/opt/_internal/cpython-3.6.8/include/python3.6m -c libBigWig/bwStats.c -o build/temp.linux-x86_64-3.6/libBigWig/bwStats.o
How do I need to update my include paths to successfully build my wheel?
The text was updated successfully, but these errors were encountered: