openai / web-crawl-q-and-a-example

Learn how to crawl your website and build a Q/A bot with the OpenAI API
https://platform.openai.com/docs/tutorials/web-qa-embeddings
284 stars 186 forks source link

fix: package versions have conflicting dependencies #1

Closed tregoning closed 1 year ago

tregoning commented 1 year ago

Similar issue to: https://github.com/huggingface/transformers/pull/12961

pip3 install -r requirements.txt Currently fails with:

INFO: pip is looking at multiple versions of transformers to determine which version is compatible with other requirements. This could take a while.
ERROR: Cannot install -r requirements.txt (line 74) and huggingface-hub==0.11.1 because these package versions have conflicting dependencies.

The conflict is caused by:
    The user requested huggingface-hub==0.11.1
    transformers 4.30.0 depends on huggingface-hub<1.0 and >=0.14.1
logankilpatrick commented 1 year ago

Thanks!