APScheduler(Advance Python Scheduler) ImportError: No module named scheduler

前端 未结 2 2000
误落风尘
误落风尘 2021-02-03 12:23

I am having following import error

\"ImportError: No module named scheduler\"

when I run the following python script:

\"\"\"
Demonstrates how to         


        
2条回答
  •  日久生厌
    2021-02-03 12:52

    I got same issue, but then I found,

    I had installed apscheduler version 3 then I shifted to version 2.1.2 using,

    pip uninstall apscheduler
    pip install apscheduler==2.1.2
    

    Just checkout before switching to version 2.1.2, If you wanted to use extra features added in version 3. In my case I didn't wanted much.

提交回复
热议问题