Python pip installation on Mac is not working

前端 未结 4 1202
别跟我提以往
别跟我提以往 2021-01-26 06:05

I have a Macbook Air and want to install pip. I have the updated python version. I follow all the instructions but I cannot install any packages.

I have been researching

4条回答
  •  臣服心动
    2021-01-26 06:41

    Try this

    sudo easy_install pip  
    

    Then

    pip install beautifulsoup4
    

    If it doesn't work try this:

    python -m pip install beautifulsoup4
    

提交回复
热议问题