天天看點

Storm運作錯誤 /usr/bin/env: ‘python’: No such file or directory

  • 用 storm 指令時出現錯誤:
./storm: line 42: 10 * ‘python’: + ‘python’:: syntax error: operand expected (error token is "‘python’: + ‘python’:")
./storm: line 43: ((: < 26 : syntax error: operand expected (error token is "< 26 ")
/usr/bin/env: ‘python’: No such file or directory
[email protected]:~/storm-2.2.0/bin# python
           
  • 是因為沒有 python 指令,建立一個軟連結即可:

    sudo ln -s /usr/bin/python3 /usr/bin/python

    。這時輸入python就代表輸入python3。