ImportError: cannot import name Weather even though i had installed the weather-api

ImportError: cannot import name Weather even though i had installed the weather-api

我对此很陌生,所以请原谅我的无知,我正在尽我最大的努力赶上并理解那里的所有信息。

Traceback (most recent call last):
  File "weather.py", line 1, in <module>
    from weather import Weather, Unit
  File "/home/kumyl/Documents/Projects/Weather-api-test/weather.py", line 1, in <module>
    from weather import Weather, Unit
ImportError: cannot import name Weather

这是我在执行 python weather.py 或 python3 weather.py 时遇到的错误。不知道为什么会这样。我在网上看了看,发现我需要更新 pip,我已经做到了:pip --version 给我

pip 19.0.2 from /usr/local/lib/python3.6/dist-packages/pip (python 3.6)

我认为这是最新的?我真的不知道这里的问题。一些解决方案说要制作一个虚拟环境运行 python?不太确定那是什么,所以任何帮助将不胜感激。谢谢。

python 将首先尝试从您的脚本导入,因为它具有相同的名称 'weather.py'。 您应该将文件的名称更改为不同的名称,它应该可以工作。