Python DistributionNotFound Error after installing EB CLI 3.0

后端 未结 7 1496
鱼传尺愫
鱼传尺愫 2020-12-19 01:29

Have tried many things, but keep getting this error after multiple attempts to update python, pip, etc. I am on OS X running 10.9.5.

CMD% eb 

Traceback (mo         


        
相关标签:
7条回答
  • 2020-12-19 02:35

    From the raised error in your log, it needs python-dateutil>=2.1. So you need to make sure that version is installed and install it if not. I had similar issue, and the solution (in my case) is:

     $ pip install --ignore-installed python-dateutil==2.2
    
    0 讨论(0)
提交回复
热议问题