ERROR: Could not find a version that satisfies the requirement paho (from versions: none) ERROR: No matching distribution found for paho
时间: 2023-11-13 16:02:17 浏览: 177
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示是因为你尝试安装的paho库没有找到对应的版本。可能是因为你使用的Python版本不兼容或者paho库没有发布对应的版本。
你可以尝试使用以下命令安装paho-mqtt库:
```
pip install paho-mqtt
```
如果还是无法安装,可以尝试更新pip版本:
```
pip install --upgrade pip
```
如果还是无法解决问题,可以考虑使用其他MQTT库或者等待paho库发布对应的版本。
阅读全文