mpaepper / content-chatbot

Build a chatbot or Q&A bot of your website's content
https://www.paepper.com/blog/posts/build-q-and-a-bot-of-your-website-using-langchain/
522 stars 56 forks source link

argparse==1.3.1 in requirements.txt not found #1

Closed snacsnoc closed 1 year ago

snacsnoc commented 1 year ago

Good afternoon, when installing the requirements via pip install -r requirements.txt, pip gave me an error:

ERROR: Could not find a version that satisfies the requirement argparse==1.3.1 (from versions: 0.1.0, 0.2.0, 0.3.0, 0.4.0, 0.5.0, 0.6.0, 0.7.0, 0.8.0, 0.9.0, 0.9.1, 1.0, 1.0.1, 1.1, 1.2.1, 1.2.2, 1.3.0, 1.4.0)
ERROR: No matching distribution found for argparse==1.3.1

When I view argparse on PyPi, 1.3.1 is not available. I was able to fix this issue by using argparse 1.4.0.

silentsilas commented 1 year ago

I had to do the same, and I also had to pip install openai, tiktoken, and faiss-cpu

mpaepper commented 1 year ago

Ah, good catch, sorry about that. I've updated the requirements.txt and tested it with a new conda env. Should all work now. Thanks for creating an issue @snacsnoc !