pip install xmlsec
commands throws the below error.
JavaScript
x
23
23
1
ERROR: Command errored out with exit status 1:
2
command: /home/xxx/PycharmProjects/saml_impl/saml_impl/venv/bin/python /home/sathia/PycharmProjects/saml_impl/saml_impl/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py build_wheel /tmp/tmpu_b5m5vz
3
cwd: /tmp/pip-install-gblz98sr/xmlsec
4
Complete output (14 lines):
5
running bdist_wheel
6
running build
7
running build_py
8
package init file 'src/xmlsec/__init__.py' not found (or not a regular file)
9
creating build
10
creating build/lib.linux-x86_64-3.8
11
creating build/lib.linux-x86_64-3.8/xmlsec
12
copying src/xmlsec/py.typed -> build/lib.linux-x86_64-3.8/xmlsec
13
copying src/xmlsec/template.pyi -> build/lib.linux-x86_64-3.8/xmlsec
14
copying src/xmlsec/constants.pyi -> build/lib.linux-x86_64-3.8/xmlsec
15
copying src/xmlsec/__init__.pyi -> build/lib.linux-x86_64-3.8/xmlsec
16
copying src/xmlsec/tree.pyi -> build/lib.linux-x86_64-3.8/xmlsec
17
running build_ext
18
error: Unable to invoke pkg-config.
19
----------------------------------------
20
ERROR: Failed building wheel for xmlsec
21
Failed to build xmlsec
22
ERROR: Could not build wheels for xmlsec which use PEP 517 and cannot be installed directly'
23
I don’t know how to resolve this issue. I tried to install other xmlsec package too, nothing worked.
Advertisement
Answer
Xmlsec listed here https://pypi.org/project/xmlsec/. The below command should install for download required native libraries.
JavaScript
1
2
1
sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl
2