在pip -install
的帮助中,我注意到安装选项--platform->“ 仅使用与平台兼容的 wheels 。默认为正在运行的系统的平台。< / em>“
我当时想我可以使用此选项在Windows计算机上获取Linux二进制文件,但是我似乎无法使其按预期工作。
此选项的正确语法是什么,“车轮”到底是什么?
pip install --platform ubuntu --only-binary=:all: cryptography
返回错误:
错误:找不到满足密码要求的版本(来自版本:无)
错误:找不到匹配的加密分配
编辑: 感谢您的初步答复。尝试在Windows计算机上安装linux .so文件时,使用各种版本的命令
时遇到相同的错误pip install --platform linux_x86_64 --only-binary=:all: cryptography
在加密文档中,它标识了各种Linux支持的发行版。 https://cryptography.io/en/latest/installation/
有人知道如何使用Windows计算机获取加密.so文件吗?