easy_install with pypy while Python is installed

后端 未结 3 1534
春和景丽
春和景丽 2021-02-15 13:32

I installed PyPy while still having Python 2.7 on my system.

  • How do I install and then use easy_install with PyPy?
  • What is the syntax for dis
3条回答
  •  误落风尘
    2021-02-15 13:48

    An alternative solution is to install pip. Following the instructions in pip's documentation:

    wget https://bootstrap.pypa.io/get-pip.py
    pypy get-pip.py
    pypy -m pip install ipython
    

提交回复
热议问题