Storm 1.x version line uses "/usr/bin/python" for storm.py hence you need to check against it. In master branch we've changed to use "/usr/bin/env python", but might miss to port back.
You can modify storm.py to change "#!/usr/bin/python" to "#!/usr/bin/env python" and see it helps. Hope this helps. Thanks, Jungtaek Lim (HeartSaVioR) 2017년 12월 22일 (금) 오전 3:05, Sai Suman Mallela <[email protected]>님이 작성: > Hello Team, > > Am trying to get Stormcrawler working on my Debian VM. I get this error > when I do the following command: > > root@demo76:/opt# storm > > Traceback (most recent call last): > > File "/opt/storm/apache-storm-1.1.0/bin/storm.py", line 23, in <module> > > import shlex > > ImportError: No module named shlex > > I have python 2.7.9 version. I tried a simple python program with shlex > and it works fine but am not sure why the storm is not recognizing shlex. > Can you please help? > > > Kind Regards, > > Sai >
