正如标题所说,我在尝试运行这个简单的 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,它把事情搞砸了,但我找不到这个特定的文件。我已经多次重新安装了该软件包,更改了我的文件名并尝试了其他虚拟环境。我怎样才能避免这个错误?