Forrest logo
back to context overview

pypy

List of commands for pypy:

  • pypy:tldr:2cdc6 pypy: Start a REPL (interactive shell).
    $ pypy
    try on your machine
    explain this command
  • pypy:tldr:5e6d3 pypy: Execute a Python expression.
    $ pypy -c "${expression}"
    try on your machine
    explain this command
  • pypy:tldr:9df36 pypy: Execute script in a given Python file.
    $ pypy ${filename-py}
    try on your machine
    explain this command
  • pypy:tldr:c961d pypy: Interactively debug a Python script.
    $ pypy -m pdb ${filename-py}
    try on your machine
    explain this command
  • pypy:tldr:e9b60 pypy: Install a package using pip.
    $ pypy -m pip install ${package_name}
    try on your machine
    explain this command
  • pypy:tldr:ec486 pypy: Execute script as part of an interactive shell.
    $ pypy -i ${filename-py}
    try on your machine
    explain this command
  • pypy:tldr:f4d81 pypy: Run library module as a script (terminates option list).
    $ pypy -m ${module} ${arguments}
    try on your machine
    explain this command
back to context overview