Hi, I think your problem is that https://pypi.org/project/avro/#files does not provide any wheels, so " --only-binary=:all:" cannot be used.
On Thu, Oct 27, 2022 at 8:13 AM Matt Fysh <[email protected]> wrote: > I'm developing a python application on Mac, and deploying to a linux > environment, so when building locally before deploy I need to use these > flags on the pip install command: > > pip3 install \ > --platform manylinux2014_x86_64 \ > --target=deps \ > --implementation cp \ > --python 3.8 \ > --only-binary=:all: --upgrade \ > avro > > While these flags work for all the other packages I need to install (eg. > dpath, brotlipy, pycryptodome), this does not work for avro - I'm new to > python so I'm unsure if it's a user error, but wanted to ask if this is > caused by my command, or the deployed avro package? > > Cheers, > Matt >
