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

Reply via email to