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