I'm getting a:
ModuleNotFoundError: No module named 'supabase'
error despite having pip install supabase
.
Also tried with supabase-py but didn't change anything
Using venv and bot packages appear when running pip -list
.
Any ideas on what could be wrong?
from supabase import create_client, Client
url: str = os.environ.get("SUPABASE_URL")
key: str = os.environ.get("SUPABASE_KEY")
supabase: Client = create_client(url, key)
I tried reinstalling the packages and using on a conda environment.