Skip to content

Commit d752264

Browse files
authored
Update FAQ with workaround for Issue microsoft#251
1 parent 80954e4 commit d752264

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

website/docs/FAQ.md

+10
Original file line numberDiff line numberDiff line change
@@ -160,3 +160,13 @@ Otherwise, reply CONTINUE, or the reason why the task is not solved yet."""
160160
```
161161

162162
If you have problems with agents running `pip install` or get errors similar to `Error while fetching server API version: ('Connection aborted.', FileNotFoundError(2, 'No such file or directory')`, you can choose **'python:3'** as image as shown in the code example above and that should solve the problem.
163+
164+
## ChromaDB fails in codespaces because of old version of sqlite3
165+
166+
(from [issue #251](https://github.com/microsoft/autogen/issues/251))
167+
168+
Workaround:
169+
1. `pip install pysqlite3-binary`
170+
2. `mkdir ../../home/vscode/.local/lib/python3.10/site-packages/google/colab`
171+
172+
Explanation: Per [this gist](https://gist.github.com/defulmere/8b9695e415a44271061cc8e272f3c300?permalink_comment_id=4711478#gistcomment-4711478), linked from the official [chromadb docs](https://docs.trychroma.com/troubleshooting#sqlite), adding this folder triggers chromadb to use pysqlite3 instead of the default.

0 commit comments

Comments
 (0)