我已经调整了JIT参数并成功运行了pypy,例如:
/usr/bin/pypy --jit function_threshold=500,max_unroll_recursion=10,trace_eagerness=40 script.py
我想使用script.py
中的shebang行将选项保存到脚本中:
#!/usr/bin/pypy --jit function_threshold=500,max_unroll_recursion=10,trace_eagerness=40
但是运行该脚本失败:
未知选项:-用法:/ usr / bin / pypy [选项]尝试
/usr/bin/pypy -h
以获得更多信息。
为什么?以及如何做到?