ImportError: no module named 'smbus2'

ImportError: no module named 'smbus2'

我在 VScode 上使用 Pymakr 对连接到多个传感器的 Pycom L01 进行编程。 我正在尝试使用 smbus2 库,但我无法导入它。
我创建了一个 python 虚拟环境并使用 'pip install smbus2' 安装了它,但是当我尝试上传草图时,输出是:

    Traceback (most recent call last):
    File "main.py", line 4, in <module>
    File "/flash/lib/bmp280.py", line 3, in <module>
    ImportError: no module named 'smbus2' 
    Pycom MicroPython 1.18.2.r1 [v1.8.6-849-e0fb68e] on 2018-12-08; LoPy with ESP32
    Type "help()" for more information.

谁能帮帮我?

可能是你没有安装smbus2模块。请安装并导入到您的程序中。

已解决,那是菜鸟的错误。 项目文件在虚拟环境目录之外。 哇哦