可能是python错误!

时间:2011-01-15 06:48:42

标签: python linux

您好
我不熟悉python,我只想检查一下,所以我试着在linux中运行.py代码,所以我写道:

./waf wifi-olsr-flowmon --plot

这是一个.py程序,之后无论我想运行什么,只看到这些错误:

/home/bahar/Desktop/ns/ns-allinone-3.9/ns-allinone-3.9/ns-3.9/wscript: error: Traceback (most recent call last):
  File "/home/bahar/Desktop/ns/ns-allinone-3.9/ns-allinone-3.9/ns-3.9/.waf-1.5.16-e6d03192b5ddfa5ef2c8d65308e48e42/wafadmin/Utils.py", line 197, in load_module
    exec(compile(code,file_path,'exec'),module.__dict__)
  File "/home/bahar/Desktop/ns/ns-allinone-3.9/ns-allinone-3.9/ns-3.9/wscript", line 32, in <module>
    import cflags # override the build profiles from waf
ImportError: No module named cflags       

我不知道这是什么意思或为什么会发生,请你告诉我这是什么问题 可能是我应该添加这个注释,即使现在我不想运行任何.py代码,只是wana运行.cc我不能这样做,总是看到这个错误

 Bests

1 个答案:

答案 0 :(得分:1)

这意味着Python无法找到名为cflags的模块,但您运行的代码会尝试导入它。也许你需要设置PYTHONPATH,或者安装cflags模块。

(另外,段落是你的朋友。)