我已使用pip install pyTelegramBotAPI
安装了pyTelegramBotAPI。我已经导入了 telebot 软件包以使用该API。
但是当我想运行程序时,它说:没有名为“ telebot”的模块。整个错误消息是:
(...file path...) Telegram Bot>CertificateBot.py
Traceback (most recent call last):
(...file path...) \CertificateBot.py", line 1, in <module>
import telebot
ModuleNotFoundError: No module named 'telebot'
我正在使用Windows 10。
答案 0 :(得分:0)
尝试python3 -m pip install pyTelegramBotAPI
可能pip会将模块安装到其他python版本。