运行cProfile时语法无效

时间:2015-05-25 08:47:21

标签: python ipython profile cprofile

我尝试运行python -m cProfile simple_test_script.py。我在Windows 7,Python 2.7.10。

simple_test_script.py:

import numpy as np
from numpy.linalg import eigvals

def run_experiment(niter=100):
    K = 100
    results = []
    for _ in xrange(niter):
        mat = np.random.randn(K, K)
        max_eigenvalue = np.abs(eigvals(mat)).max()
        results.append(max_eigenvalue)
    return results
some_results = run_experiment()
print 'Largest one we saw: %s' % np.max(some_results)

我收到此错误:

File "<ipython-input-13-6634cb53f497>", line 1
    python -m cProfile simple_test_script.py
                     ^
SyntaxError: invalid syntax

我阅读了此文档:https://docs.python.org/2/library/profile.html

  

(如果后者不可用,请使用配置文件而不是cProfile   你的系统。)

我尝试了配置文件而不是cProfile但是同样的错误。我怎么称呼cProfile?

2 个答案:

答案 0 :(得分:4)

好像你在IPython中运行了以下命令:

python -m cProfile simple_test_script.py

你应该在你的shell中运行它。

答案 1 :(得分:3)

正如satoru建议的那样,你通常会在shell / terminal / console中运行这样的命令(对于日常使用,这些基本上意味着相同的事情)。但是,您可以也从IPython中运行它,例如:

%run -m cProfile simple_test_script.py

(%符号是命令的一部分,IPython有一些以%开头的特殊命令)