python - Spyder3 Python IDE 无法启动 : "This Windows version does not support the required Bluetooth API"

标签 python windows python-3.x spyder

一直在使用 spyder3 IDE 来玩弄 python。我最近重新格式化了我的电脑,然后在启动 sypder 时遇到了这个问题:

电脑格式化后我通常的步骤是:

1) 从 python.org windows .exe 下载安装 Python 3。

2) 在命令提示符下运行这些命令。

    pip install PyQt5
    pip install spyder

3) 使用资源管理器,导航到 python/scripts/并双击 spyder3.exe。

4) 通常spyder3现在会启动,但最近我一直得到这个错误框: Windows Error Box

“此 Windows 版本 (6.3.9600) 不支持所需的蓝牙 API。请考虑更新到更新的 Windows(10.0.10586 或更高版本)。”

我重新格式化了我的电脑,重新安装了所有东西,但问题仍然存在。

我尝试通过下载 spyder .zip git-hub 并使用以下命令来加载 spyder3:

    python bootstrap.py

但这导致我收到相同的错误消息。

这两种方法以前都很好用,我不确定是什么原因造成的,也不确定如何进行。请征求您的意见:)

最佳答案

看来这个问题是 PyQt5 5.10 引入的。

使用以下命令恢复到 5.9.2 对我有用:

pip uninstall PyQt5
pip install PyQt5==5.9.2

不确定是 PyQt5 的问题还是 Spyder 滥用了 API。

关于python - Spyder3 Python IDE 无法启动 : "This Windows version does not support the required Bluetooth API",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48514027/

相关文章:

windows - wxMSW设置窗口左上角图标

python - 将 2d dict 的 dict 内的值除以与该键匹配的另一个 dicts 值

python-3.x - 我如何找出哪个人住的最多晚数?姓名和总天数?

python-3.x - 在自动调整大小的窗口中选择ROI

python - 在 Python 中确定计算机是否通过 WiFi 网络或以太网电缆连接到互联网

python - pygame Sprite 似乎拉伸(stretch)/增长而不是沿 x 轴移动

python - 在 Windows 上安装 python-kerberos

python - redis python中的 key 过期通知

python - ValueError : object too deep for desired array In np. 数字化函数

c++ - 我可以在 std::map 中使用 CComPtr 吗?