无法使用 PIP 命令安装 xmlsec

Can't install xmlsec using PIP command

pip install xmlsec 命令抛出以下错误。

ERROR: Command errored out with exit status 1:
   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
       cwd: /tmp/pip-install-gblz98sr/xmlsec
  Complete output (14 lines):
  running bdist_wheel
  running build
  running build_py
  package init file 'src/xmlsec/__init__.py' not found (or not a regular file)
  creating build
  creating build/lib.linux-x86_64-3.8
  creating build/lib.linux-x86_64-3.8/xmlsec
  copying src/xmlsec/py.typed -> build/lib.linux-x86_64-3.8/xmlsec
  copying src/xmlsec/template.pyi -> build/lib.linux-x86_64-3.8/xmlsec
  copying src/xmlsec/constants.pyi -> build/lib.linux-x86_64-3.8/xmlsec
  copying src/xmlsec/__init__.pyi -> build/lib.linux-x86_64-3.8/xmlsec
  copying src/xmlsec/tree.pyi -> build/lib.linux-x86_64-3.8/xmlsec
  running build_ext
  error: Unable to invoke pkg-config.
  ----------------------------------------
  ERROR: Failed building wheel for xmlsec
Failed to build xmlsec
ERROR: Could not build wheels for xmlsec which use PEP 517 and cannot be installed directly'

我不知道如何解决这个问题。我也尝试安装其他 xmlsec 包,但没有任何效果。

这表明 PEP 517 不支持您尝试安装的轮子。 尝试升级以下软件包,然后再次尝试安装

pip install --upgrade pip setuptools wheel

此处列出了 Xmlsec https://pypi.org/project/xmlsec/。应安装以下命令以下载所需的本机库。

sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl

我有类似的问题,但不是 "pkg-config" 错误,而是 "xmlsec1" 错误所以我使用命令

sudo apt-get install libxmlsec1-dev pkg-config

根据Could not find xmlsec1 config. Are libxmlsec1-dev and pkg-config installed?

我在安装 xmlsec 时遇到了类似的问题。对我来说是重新安装此处列出的所需本机库:https://pypi.org/project/xmlsec/

就像安装一样简单:brew install libxml2 libxmlsec1 pkg-config

sudo apt-get install libxmlsec1-dev pkg-config

这将适用于 ubuntu / wsl ubuntu

yum install libxml2-devel xmlsec1-devel xmlsec1-openssl-devel libtool-ltdl-devel

Use these commands if you are getting this error in mac This will work

xcode-select --install
brew upgrade
brew install libxml2 libxmlsec1
pip install xmlsec