3
我已經使用pip install line_profiler
安裝line_profiler
。我在Mac OSX 10.8.5上,使用Python 2.7。line_profiler返回無輸出
我跑kernprof -l ~/Desktop/sum.py
,並獲得
(default code output)
Wrote profile results to sum.py.lprof
但隨後運行python -m line_profiler sum.py.lprof
給我:
Timer unit: 1e-06 s
,並沒有其他的輸出。我的程序代碼在這裏:sum.py。
你還沒有裝飾任何功能 - 你需要添加'@ profile'。請參閱[自述文件](https://github.com/rkern/line_profiler/blob/master/README.rst)。 – jonrsharpe