3

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?

mumubin
  • 87
  • 7

1 Answers1

4

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!

mumubin
  • 87
  • 7
phd
  • 82,685
  • 13
  • 120
  • 165