pypy
Fast and compliant alternative implementation of the Python language. More information: <https://doc.pypy.org>.
Install
- All systems
-
curl cmd.cat/pypy.sh
- Debian
-
apt-get install pypy
- Ubuntu
-
apt-get install pypy
- Arch Linux
-
pacman -S pypy
- Kali Linux
-
apt-get install pypy
- Fedora
-
dnf install pypy
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install pypy
- OS X
-
brew install pypy
- Raspbian
-
apt-get install pypy
- Dockerfile
- dockerfile.run/pypy
Fast and compliant alternative implementation of the Python language. More information: <https://doc.pypy.org>.
-
Start a REPL (interactive shell):
pypy
-
Execute script in a given Python file:
pypy path/to/file.py
-
Execute script as part of an interactive shell:
pypy -i path/to/file.py
-
Execute a Python expression:
pypy -c "expression"
-
Run library module as a script (terminates option list):
pypy -m module arguments
-
Install a package using pip:
pypy -m pip install package
-
Interactively debug a Python script:
pypy -m pdb path/to/file.py
© tl;dr; authors and contributors