How to resolve “dyld: Library not loaded: @executable_path..” error

前端 未结 8 1788
傲寒
傲寒 2020-12-24 11:29

I was trying to check the AWS-CLI version on my MAC OS X. And the below error hit back:

dyld: Library not loaded: @executable_path/../.Python
  Referenced f         


        
相关标签:
8条回答
  • 2020-12-24 12:04

    After read the topic, It works for me:

    1. Uninstall aws
    $ sudo rm -rf /usr/local/aws
    $ sudo rm /usr/local/bin/aws
    
    1. Reinstall it again
        $ brew reinstall awscli
    
    0 讨论(0)
  • 2020-12-24 12:07

    I had similar issue while installing awscli with homebrew on mac. So final approach was "brew uninstall python3" and reinstall awscli again.

    0 讨论(0)
提交回复
热议问题