Install pip on pypy

前端 未结 2 887
渐次进展
渐次进展 2020-12-13 06:24

I want to speed up my program so i\'m trying to setup pypy + psycopg2cffi. This program opens a xml, parses it and then insert some data in a database. I\'m using currently

2条回答
  •  爱一瞬间的悲伤
    2020-12-13 07:19

    Download the pip-installer and execute it with pypy:

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

    For usage try,

    pypy -m pip install validators
    

提交回复
热议问题