machinalis / quepy

A python framework to transform natural language questions to queries in a database query language.
Other
1.25k stars 296 forks source link

installing from cheese shop is broken. #28

Open sivang opened 8 years ago

sivang commented 8 years ago

I have installed as so: pip install quepy

Then:

sivan@metal:~/icrav/code$ quepy Traceback (most recent call last): File "/home/sivan/icrav-venv/bin/quepy", line 27, in from docopt import docopt ImportError: No module named docopt

It appears that this fixes it: pip install docopt

so docopt needs to be added to the requirements.txt

j0hn commented 8 years ago

You're right and that's already fixed on the development version, we haven't released a new version in a while and maybe it's time to do it.

You might want to install quepy by doing thise:

pip install git+https://github.com/machinalis/quepy.git

and you'll get the latest development version.

@rafacarrascosa what do you think? there are a bunch of fixes that are piling up and should be released already.

sivang commented 8 years ago

Thanks for the quick reply! I will do so, I love your effort and the library. I can probably help with release and bug fixing like this as a starting point to get involved.

BTW: Can we have a mongodb or any other KeyValue store support? I'm willing to do the coding.

sivang commented 8 years ago

also, parsing.py is missing when I do quepy startapp dbpedia, as in the readthedocs tutorial.