What is the meaning of “Failed building wheel for X” in pip install?

后端 未结 12 1063
执念已碎
执念已碎 2020-12-07 13:54

This is a truly popular question here at SO, but none of the many answers I have looked at, clearly explain what this error really mean, and why it occurs.

One sour

12条回答
  •  忘掉有多难
    2020-12-07 13:58

    I would like to add that if you only have Python3 on your system then you need to start using pip3 instead of pip.

    You can install pip3 using the following command;

    sudo apt install python3-pip -y
    

    After this you can try to install the package you need with;

    sudo pip3 install 
    

提交回复
热议问题