我有以下導入錯誤APScheduler(提前Python的調度器)導入錯誤:沒有模塊名爲調度
「導入錯誤:沒有模塊名爲調度」
當我運行下面的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 install apscheduler
我也升級了使用: 須藤PIP安裝apscheduler --upgrade 也在使用升級我的系統 「命令和apt-get安裝更新& & sudo易於得到升級」
謝謝,我已經做了必要的更改,它運行良好。 – arshpreet