#30425 [Bug]: Failed to import Prisma client
### Check for existing issues
- [x] I have searched the existing issues and checked that my issue is not a duplicate.
### What happened?
After configuring the database, Litellm encountered an error when starting up. ``` LiteLLM: Proxy initialized with Config, Set models: deepseek-v4-flash 20:48:54 - LiteLLM Proxy:ERROR: utils.py:2873 - Failed to import Prisma client: No module named 'prisma' 20:48:54 - LiteLLM Proxy:ERROR: utils.py:2874 - This usually means 'prisma generate' hasn't been run yet. 20:48:54 - LiteLLM Proxy:ERROR: utils.py:2877 - Please run 'prisma generate' to generate the Prisma client. ```
### Steps to Reproduce
1. I installed using the command "uv tool install 'litellm[proxy]'" as per the document. https://docs.litellm.ai/docs/ ``` uv tool list litellm v1.89.0 - litellm - litellm-proxy ``` 2. config.yaml ``` general_settings: master_key: sk-1234 database_url: "postgresql://postgres:postgres@127.0.0.1:5432/litellm" model_list: - model_name: deepseek-v4-flash litellm_params: model: deepseek/deepseek-v4-flash api_key: sk-xx ``` 3. Specify my configuration at startup `litellm --config ~/config.yaml` 4. Reproduce the error ``` LiteLLM: Pro…