我遇到以下导入错误

“ImportError:没有名为调度程序的模块”

当我运行以下python脚本时:

"""
Demonstrates how to use the blocking scheduler to schedule a job that execute$
"""

from datetime import datetime
import os

from apscheduler.scheduler import BlockingScheduler


def tick():
 print('Tick! The time is: %s' % datetime.now())


if __name__ == '__main__':
 scheduler = BlockingScheduler()
 scheduler.add_job(tick, 'interval', seconds=3)
 print('Press Ctrl+{0} to exit'.format('Break' if os.name == 'nt' else 'C'$

try:
    scheduler.start()
except (KeyboardInterrupt, SystemExit):
    pass

我已经使用以下方法安装了APS调度程序:
sudo pip安装apscheduler

我还使用以下方法进行了升级:
sudo pip install apscheduler-升级
还使用“sudo apt-get install update && sudo apt-get upgrade”升级了我的系统

最佳答案

我遇到了同样的问题,但后来我发现,

我已经安装了apscheduler版本3
然后我改用2.1.2版,

pip uninstall apscheduler
pip install apscheduler==2.1.2

如果要使用版本3中添加的额外功能,只需在切换到版本2.1.2之前先结帐,就我而言,我并不需要太多。

关于python - APScheduler(Advance Python Scheduler)ImportError : No module named scheduler,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24921383/

10-12 18:40