Install pip on pypy

前端 未结 2 883
渐次进展
渐次进展 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:05

    You can also try this (if it's not disabled in your Linux distribution):

    pypy -m ensurepip
    
    0 讨论(0)
  • 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
    
    0 讨论(0)
提交回复
热议问题