[Solved] How to run a python function from a file using python commandline?


Your screenshot shows that you are already in the Python interpreter. Trying to run python again will result in an error. Exit the interpreter by hitting CtrlD. Make sure you have downloaded the complete paulstretch_stereo.py file. Put the file in the same directory as the files you want to process. Then, from the Windows command line, run python paulstretch_stereo.py --help and the program’s options should print out.

By the way, make sure you have NumPy and SciPy installed, otherwise the program won’t run.

2

solved How to run a python function from a file using python commandline?