Install pip on pypy Install pip on pypy python python

Install pip on pypy


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

pypy -m ensurepip


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


For me, "pypy -m ensurepip" didn't work with a pypy3 installed with apt-get under Kubuntu 20.04. Probably disabled in the repository, as comments point in @SebMa answer. I was trying to run sympy with pypy3, so I needed pip working with pypy3. I managed to get it working with pypy3 installed with Anaconda:

conda config --set channel_priority strictconda create -n pypy3 -c conda-forge pypy3.6conda activate pypy3pypy3 -m ensurepippypy3 -m pip install sympy

This question and its answers were also helpful: How to create a Conda environment that uses PyPy?