Installing pip on macOS does not work (anymore)

前端 未结 3 1581
死守一世寂寞
死守一世寂寞 2021-02-20 02:52

I followed online instructions on how to install pip on macOS (for example this, this, and this).

I all seems to simple, but it\'s not working for me.

3条回答
  •  春和景丽
    2021-02-20 03:21

    easy_install has been deprecated. Use below commands instead.

    1. curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

    2. python get-pip.py

    Source

提交回复
热议问题