ImportError: No Module named yaml | Ansible

后端 未结 7 2024
隐瞒了意图╮
隐瞒了意图╮ 2021-01-01 13:30

Computer: MacBook Pro mid 2012, running El Capitan 10.11.4

Python version 2.7.10

I\'ve been trying to install ansible from source, and I\'ve run these two co

7条回答
  •  盖世英雄少女心
    2021-01-01 14:01

    Had the same issue. Got past it using @FranMowinckel's answer.

    First I typed:

    pip --version 
    

    it outputted python 3. But, when I tried:

    sudo python -m pip install pyyaml
    

    I got an error saying:

    Error: No module named pip

    So, finally running:

    sudo easy_install pip
    

    everything worked fine. Go back and run:

    sudo python -m pip install pyyaml
    

    (you may have to run this with all the other modules as well) Now you should finally be able to run your initial command which failed.

提交回复
热议问题