The community member is trying to create a clean install of llama-index and SupabaseVectorStore in Replit, but after installing the Supabase package, their code stops working. The community members discuss the issue, sharing error messages and potential solutions. They suggest following the tutorial on the llama-index documentation, and the community member finds that the issue is related to Replit's "import guessing" feature, which can cause issues. The community member resolves the issue by disabling the "import guessing" feature in the .replit file.
Hello I am trying to create a clean install of llama-index and SupabaseVectoreStore in Replit but as soon as I install the Supabase Package my code does not work anymore. Is there anybody that could help me out ?
no tutorial i had a feeling that that is kind of wrong xD but its getting installed autamically from replit poetry somehow after i install the supabase package
I think I found the issue, you pushed me in the right direction thx a lot! replit has a "feature" called import guessing and it sucks xD it guesses missing dependencies and installs them i had to add a command in the .replit file to deactivate this behavior
Stops the packager from installing packages when running the Repl
disableInstallBeforeRun = true
Stops the packager from guessing and auto-installing packages, but it still runs to install packages when running the Repl