Comment installer pytest pour l'utiliser dans pypy? Déjà installé avec le python standard
arkadiusz@pc:~$ pip install pytest
Requirement already satisfied (use --upgrade to upgrade): pytest in /usr/local/lib/python2.7/dist-packages
Requirement already satisfied (use --upgrade to upgrade): py>=1.4.29 in ./.local/lib/python2.7/site-packages (from pytest)
mais ne peut pas courir
arkadiusz@pc:~$ pypy -m pip install pytest
/usr/bin/pypy: No module named pip
ne peut pas installer pip
arkadiusz@pc:~$ pypy -m ensurepip
ensurepip is disabled in Debian/Ubuntu for the system python.
Python modules For the system python are usually handled by dpkg and apt-get.
apt-get install pypy-<module name>
Install the python-pip package to use pip itself. Using pip together
with the system python might have unexpected results for any system installed
module, so use it on your own risk, or make sure to only use it in virtual
Ensurepip suggère d'utiliser apt-get mais apt ne dispose pas de pip ou de pytest pour pypy.
arkadiusz@pc:~$ Sudo apt-get install pypy
pypy pypy-genty pypy-rply
pypy-appdirs pypy-idna pypy-setuptools
pypy-attr pypy-ipaddress pypy-six
pypy-bs4 pypy-iso8601 pypy-sqlparse
pypy-dev pypy-lib pypy-tk
pypy-doc pypy-lib-testsuite pypy-unidecode
pypy-dulwich pypy-mutagen pypy-wand
pypy-enum34 pypy-pkg-resources pypy-zmq
pypy-fastimport pypy-pretend
pypy-flaky pypy-pyasn1
sortie de dpkg
ii pypy 5.1.2+dfsg-1~16.04 AMD64 fast alternative implementation of Python - PyPy interpreter
ii pypy-dev 5.1.2+dfsg-1~16.04 all header files for PyPy (an alternative Python interpreter)
ii pypy-doc 5.1.2+dfsg-1~16.04 all developer Documentation for PyPy (an alternative Python interpreter)
ii pypy-lib:AMD64 5.1.2+dfsg-1~16.04 AMD64 standard library for PyPy (an alternative Python interpreter)
ii pypy-pkg-resources 20.7.0-1 all Package Discovery and Resource Access using pkg_resources
ii pypy-setuptools 20.7.0-1 all PyPy Distutils Enhancements
script wget get-pip.py utilisant
wget https://bootstrap.pypa.io/get-pip.py
Lancer le script
Sudo pypy get-pip.py
Maintenant courir
pypy -m pip install pytest