1

I am following the quickstart for wit.ai: here

But when I write

pip install wit

I get the following exception:

Exception: unable to retrieve libwit

What could be the problem?

  • It seems like libwit doesn't exist in pip collection..use "pip search libwit" to verify – repzero Dec 27 '15 at 13:59
  • What operating system you are working on WIndows or Linux?..follow the instruction on the site to manually install wit...specifically if you are working on debian linux...just use "apt-get install python-wit" (assumming the package is in your OS repository) – repzero Dec 27 '15 at 14:05
  • I am on Windows. It gives the same error as before. –  Dec 27 '15 at 14:07

1 Answers1

0

You could just try:

git clone https://github.com/wit-ai/pywit
python setup.py install

See more information from https://github.com/wit-ai/pywit.

Sung Kim
  • 8,417
  • 9
  • 34
  • 42