1

正如标题所说,我在尝试运行这个简单的 Python 代码时遇到了这个错误:

import speedtest

r = speedtest.Speedtest()

这导致

Traceback (most recent call last):
File "c:/Users/XXXX/YYYYYY/VSCode/Poli.py", line 3, in <module>
r = speedtest.Speedtest()
AttributeError: module 'speedtest' has no attribute 'Speedtest'

我浏览了我在 SE 和网络上可以找到的所有帖子: getting an AttributeError: module 'speedtest' has no attribute 'Speedtest' python 'speedtest' has no attribute 'Speedtest' speedtest module in python speedtest-cli在控制台中工作,但不是作为脚本 https://cloudstack.ninja/pratik-amonkar/how-can-i-fixed-error-of-speedtest-module/

我所能做的就是在我的项目文件夹中的某个地方存在一个 speedtest.py,它把事情搞砸了,但我找不到这个特定的文件。我已经多次重新安装了该软件包,更改了我的文件名并尝试了其他虚拟环境。我怎样才能避免这个错误?

4

2 回答 2

2

如果您使用过,pip install speedtest可能就是导致问题的原因。那是安装了错误的软件包。您必须使用卸载软件包speedtestpip uninstall speedtest然后speedtest-cli使用pip install speedtest-cli. 第一行import speedtest实际上是导入speedtest-cli。

*请注意,您不能同时安装两者,因为您的脚本实际上是在尝试修改speedtest.py您执行时创建的文件pip istall speedtest

于 2021-06-04T21:53:35.470 回答
0

检查您是否已经安装了速度测试。如果已安装,则将其卸载pip uninstall speedtest 并安装,pip install speedtest-cli 然后尝试运行您的脚本,它将起作用。

于 2021-12-28T15:49:48.690 回答