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软件包,但没有成功。
sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl
我在安装xmlsec时遇到了类似的问题。为我所做的是重新安装此处列出的必需的本机库:https://pypi.org/project/xmlsec/
它就像安装一样简单:brew install libxml2 libxmlsec1 pkg-config
快进到2023年,问题发生在macOS上。自brew版本4.0.13以来,我们似乎无法(pip-install-xmlsec(。dpitchett的变通方法加上johnnymetz评论的变体救了我,它包括:
手动恢复到上一个已知良好的1.3.0之前xmlsec1版本的副本(1.2.37(公式:
brew edit libxmlsec1
;一个编辑器打开,里面充满了最新下载的xmlsec公式的内容- 粘贴在上一个1.3.0之前的酿造配方中并保存(vim:
wq!
(*brew unlink libxmlsec1
- 安装本地公式:
brew install /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/libxmlsec1.rb
pip install xmlsec
*在我的设置步骤1&2个是不必要的;我把他们答案的变体粘贴在同一个链接上
sudo apt-get install libxmlsec1-dev pkg-config
这将适用于ubuntu/wsl-ubuntu
这表示您尝试安装的轮子不受PEP 517的支持。尝试升级以下软件包,然后尝试再次安装
pip install --upgrade pip setuptools wheel
我有类似的问题,但不是"pkg配置">错误,我在";xmlsec1">所以我使用命令
sudo apt-get-install libxmlsec1 dev-pg-config
根据找不到xmlsec1配置。是否安装了libxmlsec1-dev和pkg config?
yum install libxml2-devel xmlsec1-devel xmlsec1-openssl-devel libtool-ltdl-devel
我的MacBook Air(M22022(运行macOS Monterey 的解决方案
xcode-select --install
brew upgrade
brew install libxml2 libxmlsec1
pip install xmlsec
重新启动
使用python 3.10创建虚拟环境(可能3.8/3.9也可以,但没有测试(
python3.10 -m venv .venv
source .venv/bin/activate
pip install xmlsec
在安装哨兵时出现以下错误
ERROR: Could not build wheels for xmlsec which use PEP 517 and cannot be installed directly
上面的答案是@sathiamoorthy解决的。
sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl
如果你在mac中遇到这个错误,请使用这些commands
,这肯定会起作用。
xcode-select --install
brew upgrade
brew install libxml2 libxmlsec1
pip install xmlsec