Examples (7)
Start a REPL (interactive shell)
Execute script in a given Python file
pypy path/to/file.pyExecute script as part of an interactive shell
pypy -i path/to/file.pyExecute a Python expression
pypy -c "expression"Install a package using pip
pypy -m pip install packageInteractively debug a Python script
pypy -m pdb path/to/file.pymade by @shridhargupta | data from tldr-pages