如果我在python(2.7.13)脚本中导入模块,例如
from winappdbg import breakpoint
并使用IDLE Python Shell执行它, 我收到一个错误:
ImportError: cannot import name breakpoint
如果我从命令行运行:
>> python
>> from winappdbg import breakpoint
一切都很好。
如果我通过Commandline运行脚本会出现同样的问题:
>> python C:\path\to\script.py
导致相同的错误
我不知道如何继续 - 所以也许有人有想法或者遇到同样的问题?