ConstStar
发布于 2023-12-21 / 62 阅读 / 0 评论 / 0 点赞

pip安装库失败,Could not find a version that satisfies the requirement (from versions: none)

在arm板子安装PySide6报下面的错误:

ERROR: Could not find a version that satisfies the requirement pyside6 (from versions: none)
ERROR: No matching distribution found for pyside6

换源试了,都也不行。

相同的源在另一个板子就能安装成功,可能pip识别CPU的架构有问题,但是通过下面的方法就能安装成功:

python3 -m pip install --upgrade pip
python3 -m pip install PySide6

评论