Python DistributionNotFound Error after installing EB CLI 3.0

后端 未结 7 1520
鱼传尺愫
鱼传尺愫 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:30

    in my case on mac osx 10.10, I had to reinstall.

    sudo pip install python-dateutil
    

    Just in case some runs into this type of error. check the last paragraph in the trace for the kind of error that it is being raised. In my case, this was:

     raise VersionConflict(dist, req).with_context(dependent_req)
    pkg_resources.ContextualVersionConflict: (six 1.4.1
    (/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python),
    Requirement.parse('six>=1.5'), set(['python-dateutil']))
    

提交回复
热议问题