I want to download lxml for package in local.
Local env: MacOS
CMD:
pip download \
--only-binary=:all: \
--platform manylinux1_x86_64 \
--python-version 27 \
--implementation cp \
lxml==4.3.1
it downloads lxml-4.3.1-cp27-cp27m-manylinux1_x86_64.whl
but I want lxml-4.3.1-cp27-cp27mu-manylinux1_x86_64.whl.
cp27m vs cp27mu
how to specify download with --enable-unicode=ucs4?
It's --abi:
pip download \
--only-binary=:all: \
--platform manylinux1_x86_64 \
--python-version 27 \
--implementation cp \
--abi cp27mu \
lxml==4.3.1
It works now!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With