1

I go to The bllipparser website and I follow the instruction to try to start the parsing shell as I want to visualize parse trees. Well, when I try:

python -mbllipparser WSJ

I get

/usr/bin/python: bllipparser is a package and cannot be directly executed

So what's the deal, how can I start the parsing shell?

demongolem
  • 9,474
  • 36
  • 90
  • 105
  • This seems to be an issue with Python 2.6 only. I've updated the PyPI info to clarify this. – dmcc Feb 11 '16 at 16:00

1 Answers1

0

There is a mistake on the website. You need

python -mbllipparser.ParsingShell WSJ

to start the shell successfully. To find all of the contents of the bllipparser, one can refer to

this SO question

Community
  • 1
  • 1
demongolem
  • 9,474
  • 36
  • 90
  • 105