Aide Flood
PPrisma
•Created by Aide Flood on 5/12/2024 in #help-and-questions
Error: spawn prisma-client-py ENOENT
I've been using prisma in node.js & I'm loving it.
Right now I have a Fastapi backend that I want to use Prisma with, yet I'm facing this issue whenever I run "prisma db push" :
{prisma db push
Environment variables loaded from .env
Prisma schema loaded from schema.prisma
Datasource "db": PostgreSQL database "postgres", schema "public" at "aws-0-us-west-1.pooler.supabase.com"
The database is already in sync with the Prisma schema.
Running generate... (Use --skip-generate to skip the generators)
Error: spawn prisma-client-py ENOENT}
--
Prisma -v:
prisma : 5.13.0
@prisma/client : 5.13.0
Computed binaryTarget : windows
Operating System : win32
Architecture : x64
Node.js : v20.12.0
Query Engine (Node-API) : libquery-engine b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b (at ........\AppData\Roaming\npm\node_modules\prisma\node_modules@prisma\engines\query_engine-windows.dll.node)
Schema Engine : schema-engine-cli b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b (at ........\AppData\Roaming\npm\node_modules\prisma\node_modules@prisma\engines\schema-engine-windows.exe)
Schema Wasm : @prisma/prisma-schema-wasm 5.13.0-23.b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b
Default Engines Hash : HIDDEN
Studio : 0.500.0
--
Schema.prisma:
generator client {
provider = "prisma-client-py"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id String @id @unique
name String?
email String @unique
profileImage String?
ntfyChannel String
stripeCustomerId String? @unique
}
10 replies